﻿
$(".lnkShowEditor").ready(function () {
    $(".lnkShowEditor").each(function () {
        var a = $(this);
        a.click(function () {
            $.ajax({
                url: $(this).attr("href"),
                success: function (data) {
                    a.parent().parent("div").html(data);
                }
            });
            return false;
        });
    });
});

$(function () {
    $('.pnlMainMenu ul li:not(".first"):last-child').addClass('last');

    // build a gap between 3rd and 4th Menu Item
    $(".pnlMainMenu ul li").not(".pnlMainMenu ul ul li").eq(2).css("margin-right", "184px");

    $(".pnlMainMenu")
        .mouseenter(function () {
            $(".pnlContentWrapper").css("background-image", "url('/Content/IMG/Backgrounds/2.jpg')");
        })
        .mouseleave(function () {
            $(".pnlContentWrapper").css("background-image", "url('/Content/IMG/Backgrounds/1.jpg')");
        }); ;
});



