$(document).ready(function(){
   $("#footer a").hover(function() { $(this).css("color","#e3e3e3"); },
			function() { $(this).css("color","#FFF"); } );
   $("#menu .item").hover(function() { $(this).css("background","url(images/menu_item_hover.jpg) top left repeat-x"); },
			function() { $(this).css("background","url(images/menu_item.jpg) top left repeat-x"); } );
});
