$(document).ready(function() {
      
     $("#submit input").mouseover(function(){
		
                $(this).css('background-color' , '#ff6600');
     
      }).mouseout(function(){
		$(this).css('background-color' , '#636363');
      });
      
      $("#PageSearch").click(function(){
             $(this).attr('value' , '');
      });
      
      
      
		
 
}); 


