$(document).ready(function() {
  $('input[type=submit]').hover(function(){
    $(this).css("background-color","#E0661C");
  }, function(){
    $(this).css("background-color","#666");
  });
  
  
  $('input[type=text], textarea').hover(function(){
	$(this).css({border: "#E0661C 1px solid"});
  }, function(){
	$(this).css({border: "#CCC 1px solid"});
    
  });
  

});
