$(document).ready(function(){

    //Set up the data tables
    $("table.Striped tr:even").addClass("Even");
    $("table.Striped tr:odd").addClass("Odd");

    //Set up the submenus
    $("#LeftNav li ul").prev().append(" &gt;&gt;");

    //Move the first sub-UL one level out
    $("#LeftNav ul:first-child").html( $("#LeftNav ul:first-child ul").html() );

    //Add a class to all the top-level LIs
    $("#LeftNav ul:first-child").children().addClass("Menu");

    //Add a class to all the inner ULs
    $("li.Menu ul").addClass("SubMenu");

    //Hide the submenus
    $(".SubMenu").hide();
    
    //Add the click functionality
    $("#LeftNav li.Menu").hover(
        function() { $(this).children("ul.SubMenu").show(); },
        function() { $(this).children("ul.SubMenu").hide(); }
    );

});

function DoSearch(Selector)
{
    document.location = "/search.aspx?q=" + $(Selector).val();
}

function DoCalSearch(Selector) {
    document.location = "/calSearch.aspx?q=" + $(Selector).val();
}