// ==UserScript==
// @name           Kaljiksen rundausskripti
// @namespace      http://gm.taistelumarsu.org/
// @description    Rundaa kaljista
// @include        http://*.kingdomofloathing.com/choice.php
// @include        http://kingdomofloathing.com/choice.php
// ==/UserScript==

if (window.wrappedJSObject.top.frames[1].document.body.innerHTML.indexOf('Kaljatukku') == -1) {
	return;
}

inputs = document.getElementsByTagName('input');

for (i = 0; i < inputs.length; i++) {
	if (inputs[i].value.indexOf('Take the scorched path') != -1
	|| inputs[i].value.indexOf('Investigate the moist crater') != -1
	|| inputs[i].value.indexOf('Inter the vampire') != -1) {
		inputs[i].click();
		return;
	}
}
