var $j= jQuery; 
$j(document).ready(function () {
	$j("#loginbar form input.text").focus(function () {
         $j(this).attr({value : ""});
		 $j(this).removeClass();
		 $j(this).addClass("focus");
    });
    
    $j("#search .searchbox").focus(function () {
         $j(this).attr({value : ""});
		 $j(this).removeClass();
		 $j(this).addClass("focus");
    });
});
