// JavaScript Document

$(document).ready(function() {
    var ul = $("#main_menu ul");
    
    ul.removeClass("menu");
    
    ul.find("a").each(function(){
        var a = $(this);
        a.append("<span>" + a.text() + "</span>");
    });
    ul.find("a").hover(function() {
        //$(this).find("span").fadeIn("slow");
		$(this).find("span").stop(true, true).fadeIn("slow");
        }, function() {
        //$(this).find("span").hide();
		$(this).find("span").stop(true, true).fadeOut("slow");
    });
});
