$(document).ready(function(){
	$("#menu a").hover(function(){
		$(this).parent("span").addClass("hover");
			},function(){
		$(this).parent("span").removeClass("hover");
	});	
});