﻿//$('html').addClass('NoFlash');

$(document).ready(function() {
    // Epand or hide a section
    function ExpandToggle(toToggle, theButton, titleSuffix)
    {
        if (!titleSuffix) titleSuffix = '';
        $(toToggle).slideToggle();
        $(theButton)
            .toggleClass('expandButton')
            .toggleClass('contractButton')
            .attr('title', ($(theButton).is('.expandButton') ? 'Show' : 'Hide') + titleSuffix);
        return false;
    }
    // Shade every other Item in the list
    //$("ul.menuList>li:odd", "#PageContent").addClass("everyOtherRow");
    // Hide the Hot List and add an expand button
    /*
    $("#HotListTitle").prepend('<a href="#" tabindex="1000" class="ToggleGroupButton expandButton" title="Show"></a>');
    $("ul.menuList").hide();
    $(".ToggleGroupButton").each(function() {
        $(this).click(function() { return ExpandToggle($("ul.menuList"), this, ''); });
    });
    //*/
});

