﻿$(document).ready(function () {
    $(".top_menu a[href='" + window.location.pathname + "']").parent().children(".hover").fadeIn('slow');
    $('.top_menu li').hover(

    //Mouseover, fadeIn the hidden hover class  
        function () {
            $(this).children('div').fadeIn('slow');
        },
    //Mouseout, fadeOut the hover class
        function () {
            if ($(this).children("a[href='" + window.location.pathname + "']").length == 0)
                $(this).children('div').fadeOut('slow');
        });

    createSideMenu();
});

function createSideMenu() {
    var page = window.location.pathname;
    if (page.indexOf("-") > 0) {
        page = page.substr(0, page.indexOf("-"));
    }
    $(".side_menu a[href|='" + page + "']").parent().children(".hover").fadeIn('slow');

    $('.side_menu li').hover(

    //Mouseover, fadeIn the hidden hover class  
    function () {
        $(this).children('div').fadeIn('slow');
    },
    //Mouseout, fadeOut the hover class
    function () {
        if($(this).children("a[href='" + window.location.pathname + "']").length==0)
            $(this).children('div').fadeOut('slow');
    });
}

