$(document).ready(function() {
	$("ul#menu li").hover(function() { 
		$(this).css({ 'background' : '#3286df url(images/bg-topnav.png) repeat-x'}); 
		$(this).find("span").show(); 
	} , function() { 
		$(this).css({ 'background' : 'none'}); 
		$(this).find("span").hide(); 
	});
});

