function toggleDetails() {
	$('whatsthis').visible() ? $('whatsthis').hide() : $('whatsthis').show();
}

function checkForEmptySearchBox(textField) {
	if (textField.value == '') {
		window.location = window.location;
		return false;
	} else {
		return true;
	}
}

Event.observe(window,'load',init);

function init() {
	$('whatsthis').hide();
	$$('.whyamihere').each(function(el) {
		$(el).observe('click',toggleDetails)
	});
	
	if (searchType) focusSetup();
}

function focusSetup() {
	if (searchType == 'searchbox' || searchType == 'keyword'){
		var q = window.location.href.toQueryParams()
		var term = (q.querybox) ? q.querybox : q.Keywords;
			term = term.replace(/\+/g,' ');
		$$('.searchfields').each(function(inp) {
			$(inp).value = term;
		});
	} else {
		$$('.searchfields')[0].focus();
	}
}