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

   $('#topnav .current').find("span").css('marginTop','-40');
    
	$("#topnav").hover(function() {} ,
    function() {
        $('#topnav .current').find("span").stop().animate({
			marginTop: "-40"
		}, 300);
	});
	
	$("#topnav li").each(function() {
		var linkText = $(this).find("a").html();
		$(this).find("span").show().html(linkText);
	}); 
	
	$("#topnav li").hover(function() {
        if ($(this).find("span").css('marginTop')=='0px') {
            $('#topnav .current').find("span").stop().animate({
                marginTop: "0"
            }, 300);
        }
		$(this).find("span").stop().animate({ 
			marginTop: "-40"
		}, 300);
	} , function() {
		$(this).find("span").stop().animate({
			marginTop: "0"
		}, 300);
	});
});
//-->
