$(function(){
   $('input[type=submit]').css('cursor','pointer');
   $('input, textarea').focus(function(){
      $(this).css('background-color','#FEEDFF'); 
   });
   $('input, textarea').blur(function(){
      $(this).css('background-color','#FFF');
   }); 
});
