var $_ = jQuery; 
$_(document).ready(function () {
	$_(".searchbox").focus(function () {
         $_(this).attr({value : ""});
		 $_(this).removeClass();
		 $_(this).addClass("focus");
    });

});
