$(document).ready(function() {
$("#navigation li").prepend("<span></span>"); 

	$("#navigation li").each(function() { 
		var linkText = $(this).find("a").html(); 
		$(this).find("span").show().html(linkText); 
		//$(this).find("a.over").parent().find("span").addclass("over");
	}); 
	
	$("#navigation li").hover(function() {	//On hover...
		$(this).find("span").stop().animate({
			marginTop: "-46" 
		}, 250);
	} , function() { 
		$(this).find("span").stop().animate({
			marginTop: "0"  
		}, 250);
	});
	$("#navigation li a.over").parent("li").find("span").animate({marginTop: "-46"  }, 250);
	$("#navigation li a.over").parent("li").hover(function() {	//On hover...
		$(this).find("span").stop().animate({
			marginTop: "0" 
		}, 250);
	} , function() { 
		$(this).find("span").stop().animate({
			marginTop: "-46"  
		}, 250);
	});
});
