$(document).ready(function() {

	$("#topnav li").prepend("<span></span>");
	$("#topnav li").each(function() { 
		var linkText = $(this).find("a").html(); 
		$(this).find("span").show().html(linkText); 
	}); 
	$("#topnav li").hover(function() {	//HOVER
		$(this).find("span").stop().animate({
			marginTop: "-36"
		}, 250);
	} , function() { //HOVER OUT
		$(this).find("span").stop().animate({
			marginTop: "0"  
		}, 250);
	});

});
