﻿$(document).ready(
    function() 
    { 
        //############################################################
        // Close all sections by default
        //############################################################
        $(".SubLevelList").toggle();
        $(".SubSubLevelList").toggle();

        //############################################################
        // Now create an event that should be fired when top level
        // links are clicked
        //############################################################
        $(".TopLevelCategory > li > a").click(
            function () 
            { 
                $(this).parent(0).children(".SubLevelList").toggle();
            }
        );

        //############################################################
        // Now create an event that should be fired when sub level
        // links are clicked
        //############################################################
        $(".SubLevelList > li > a").click(
            function () 
            { 
                $(this).parent(0).children(".SubSubLevelList").toggle();
            }
        );
              
        //############################################################
        // If we've got a current category then show it and show
        // all it's parents
        //############################################################
        $(".currentCategory").parents("*").show();
    }
);

function popUp(URL) 
{
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=450,height=300');");
}

function popUpVideo(URL) 
{
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=425,height=355');");
}