/*
	Search jQuery
	Search focus clear.
*/

$(function(){
	
	// Search UWF text focus and focus out
	// Replaces Search UWF text on focus and replaces if no value was entered
	$('#searchform_query').focus(function(){
		 if($(this).val() == "Search UWF")$(this).val("");
	});
	$('#searchform_query').focusout(function(){
		 if($(this).val() == "") $(this).val("Search UWF");
	});
	
});
