$(document).ready(function (){
	
	$("#menu li").bind("mousemove", function(){
		$(this).find(".sub-menu").show();
		$(this).find("a").css({ "background-image": "url(../images/menu-a-selected.gif)", "background-repeat": "repeat-x" });
		$(this).find("a span").css({ "background-image": "url(../images/menu-pic-selected.gif)" });
		$(this).find(".sub-menu a").css({ "background-image": "url(../images/sub-menu-pic.gif)", "background-repeat": "no-repeat" });
	});
	
	$("#menu li").bind("mouseleave", function(){
		$(this).find(".sub-menu").hide();
		$(this).find("a").css({ "background-image": "none", "background-repeat": "no-repeat" });
		$(this).find("a span").css({ "background-image": "url(../images/menu-pic.gif)" });
	});
	
	
});
