$(document).ready(function() {
	$("ul#top-menu li").hover(function() {
		$(this).css({ 'background' : '#ddd url(images/top-menu-active.gif) repeat-x'});
		$(this).find("span").show();
	} , function() {
		$(this).css({ 'background' : 'none'});
		$(this).find("span").hide();
	});
});