
$(document).ready(function() {
    $("#HeaderRgn").find("img:first").hover(
        function() {
            $(this).fadeTo("fast", 0.55);
        },
        function() {
            $(this).fadeTo("fast", 1);
        }
    );

    //Drop shadow from menu
    $("#RightWrapper .wtp_linklist table").dropShadow({ left: 0, top: 0, blur: 4, opacity: 0.25 });
    $("#LeftWrapper .wtp_linklist table").dropShadow({ left: 0, top: 0, blur: 4, opacity: 0.25 });

    $(".wtp_sectionlistmenu table.level-1").dropShadow({ left: 0, top: 0, blur: 4, opacity: 0.25 });

    $("#MenuRgn .wtp_linklist table, #MenuRgn .wtp_linklist").attr(
    {
        "cellpadding": "0",
        "cellspacing": "0",
        "border": "0",
        "height": "37px"
    });

    $("#MenuRgn .wtp_linklist table td").css("padding", "0px");

    $("#MenuRgn .wtp_linklist table td").css({ "padding-left": "5px", "padding-right": "5px" });

    $("#MenuRgn .wtp_linklist .active").css("background-color", "#787269");

    $("#MenuRgn .wtp_linklist a").hover(
        function() {
            $(this).parent().css("background-color", "#787269");
            $("#MenuRgn .wtp_linklist .LinkListActive").parent().css("background-color", "#787269");
        },
        function() {
            $(this).parent().css("background-color", "");
            $("#MenuRgn .wtp_linklist .LinkListActive").parent().css("background-color", "#787269");
        }
    );

    // SectionList - Remove last separator    
    $("#TemplateLeftRail2 .wtp_sectionlist div:last").css({ 'border-bottom': '0px', 'margin-bottom': '0px', 'padding-bottom': '0px' });

    // ClearMenu - Remove last separator    
    $("#MenuRgn .EditorPanel .sf-menu li.level-1:last > a").css("background-image", "none");
});

