$(document).ready(function(){
    $(".menu td").click(function(){
        var href=$(this).children("a").attr("href");
        document.location.href=href;
    });

    $('.menu td:last').addClass('last-child');
    $('.menu td:first').addClass('first-child');
    $('ul.files li:last').addClass('last-child');
    $('ul.files li:first').addClass('first-child');
   
    $(".menu td").hover(
        function () {
            $(this).find('> a').addClass('active');
            $(this).find('> ul').addClass('show');
        },
        function () {
            $(this).find('> a').removeClass('active');
            $(this).find('> ul').removeClass('show');
        }
    );

    $(".menu a.more").hover(
        function () {
            $(this).addClass('active');
            $(this).find('> ul').addClass('show');
        },
        function () {
            $(this).removeClass('active');
            $(this).find('> ul').removeClass('show');
        }
    );
   
});
