// JavaScript Document
function clearText(thefield){
		if (thefield.defaultValue==thefield.value)
		thefield.value = ""
}

$(document).ready(function() {
	$('#searchsubmit').val("");
});
