﻿$.fn.dropdownNav = function (options) {
    var nav_bar = $(this);
    var top_links = nav_bar.find('.top>ul>li')
    .bind('mouseenter', function () {
        $(this).find('.second').css({ "visibility": "visible" }).show();
        $(this).children('p').addClass('hover');
    })
    .bind('mouseleave', function () {
        $(this).find('.second').hide();
        $(this).children('p').removeClass('hover');
    });
    var secondary_links = nav_bar.find('.second>ul>li')
    .bind('mouseenter', function () {
        $(this).find('.third').css({ "visibility": "visible" }).show();
        $(this).children('p').addClass('hover');
    })
    .bind('mouseleave', function () {
        $(this).find('.third').hide();
        $(this).children('p').removeClass('hover');
    });
    secondary_links.each(function () {
        var list = $(this);
        $(this).find('.third').hide().css({ position: 'absolute', left: (list.width() + 10) });
    });
    top_links.find('.tm').each(function () {
        $(this).width(($(this).parent().width() - 6));
    });
    top_links.find('.bm').each(function () {
        $(this).width(($(this).parent().width() - 6));
    });
};

$(function () {
    $('#global_navigation').dropdownNav();
});
