$(document).ready(function(){
    $('.header .moduletable').hover(function(){
        $(this).attr('id', 'hover').find('ul').fadeIn();
    }, function(){
        $(this).removeAttr('id', 'hover').find('ul').fadeOut();
    });
    $('.header .moduletable #current').parent().parent().addClass('active-menu');
    $('.entry .left .moduletable_menu li a').each(function(){
        $(this).find('span').clone().appendTo($(this));
        $(this).find('span:first').addClass('a');
    });
    $('.entry .left .moduletable_menu li a').hover(function(){
        $(this).find('span.a').fadeIn();
    }, function(){
        $(this).find('span.a').fadeOut();
    });
});

