function clickInput()
{
	$("#search").focus(
		function(){
		if($(this).attr("value")=="SEARCH")
		{
			$(this).attr("value","");
		}
	});

	$("#search").blur(
		function(){
		if($(this).attr("value")=="")
		{
			$(this).attr("value","SEARCH");
		}
	});
}
$(document).ready(function() {clickInput();});
