jQuery(document).ready(function() {
jQuery("#s_menu > li").hover(function() {
jQuery(this).stop().animate({backgroundColor: "#d47e6c"}, "fast");
}, function(){
jQuery(this).stop().animate({backgroundColor: "#eaa293"}, "fast");
});
jQuery("#menu > li").hover(function() {
jQuery(this).stop().animate({backgroundColor: "#FFE3DD"}, "fast");
}, function(){
jQuery(this).stop().animate({backgroundColor: "#FFEAE5"}, "fast");
});
});
