// THIS CLEARS THE TEXT IN THE SEARCHFORM.PHP FILE ON USER CLICK (ONBLUR AND ONFOCUS)
$(document).ready(function () {
	$('input[type=text]').clearOnFocus();
	$('textarea').clearOnFocus();
});

function jump2center(selectElement){
	thisURL = selectElement.options[selectElement.options.selectedIndex].value;
	if(thisURL){
		window.location.href=thisURL;
	}
}
