﻿$(document).ready(function() {
    $("#topMenu li").TopMenuLink();

    $("#topMenu li a").hover(function() {

        if ($(this).attr("class") != "Selected") {
            $(this).parent().find(".bgTopMenu").fadeIn();
        }
    }, function() {
        if ($(this).attr("class") != "Selected") {
            $(this).parent().find(".bgTopMenu").fadeOut();
        }
    });

    $("#topMenu li a.Selected").parent().find(".bgTopMenu").css("display", "block");
});

jQuery.fn.TopMenuLink = function() {

    this.each(function() {
        var linkWidth = $(this).children(0).width() + 70;
        var bgdiv = $("<div class=\"bgTopMenu\"  style=\"width:" + linkWidth + "px;\"><img src=\"img/btn-left.jpg\"/></div>");

        $(this).prepend(bgdiv);

    });

};
