﻿$(document).ready(function() {
    $(".navmenu-h li,.navmenu-v li").hover(
        function() { $(this).addClass("iehover"); },
        function() { $(this).removeClass("iehover"); }
    );

    $("ul.navmenu-h > li.active > a").attr('style', 'border-bottom:solid 1px #b1b1bd;');

    $("ul.navmenu-h > li > a").hover(function() {
        if ($(this).parent().find('ul').length > 0)
            $(this).attr('style', 'border-bottom:none;');
    }, function() {
        if ($(this).parent().attr('class').indexOf('active') != -1) {
            $(this).attr('style', 'border-bottom:solid 1px #b1b1bd;');
        }
    });

    $("$ul.navmenu-h > li.active > ul").hover(function() {
        $(this).parent().find('> a').attr('style', 'border-bottom:none;');
    }, function() {
        $(this).parent().find('> a').attr('style', 'border-bottom:solid 1px #b1b1bd;');
    });
});
