$(document).ready(function(){

  $("#search .submit").hover(function(){
    $(this).css({"background":"#b00f1f url('../images/search-submit-hover.jpg') no-repeat 15px 6px"});
  },function(){
    $(this).css({"background":"#404a4f url('../images/search-submit.jpg') no-repeat 14px 5px"});
  });
  
  $("#search .text").hover(function(){
    $(this).css({"background":"#3d494f none","color":"#fff"});
  },function(){
    $(this).css({"background":"#242b2e none","color":"#a5bac3"});
  });

});

