Hola yo no soy muy entendido pero puedes probar con esto haber si te vale igual.
Código HTML:
Ver original$(document).ready(function(){
$("#boton").hover(function(){
$(this).css('background-color','#FF0000');
}, function(){
$(this).css('background-color','#cccccc');
});
});