$(document).ready(function() {
	$("#topnav li").prepend("<span></span>"); 
	$("#topnav li").each(function() { 
		var linkText = $(this).find("a").html(); 
		$(this).find("span").show().html(linkText); 
	}); 
	var pageID = $("body").attr("id");
	$("#topnav li").hover(function() {
		var navClass = $(this).attr("class");
		if (pageID != navClass) { 
			$(this).find("span").stop().animate({ 
				marginTop: "-40" 
			}, 250);
		}
	} , function() { //On hover out...
		var navClass = $(this).attr("class");
		if (pageID != navClass) {
			$(this).find("span").stop().animate({
				marginTop: "0"
			}, 250);
		}
	});
});
