// ************************************************************************************************
// *
// *  Name:               on_std_page_load.js
// *
// *  Created by:         Paul McKlveen
// *          on:         01-DEC-2009
// *
// *  Updated by:         Paul McKlveen
// *          on:         01-DEC-2009
// *
// *  Purpose:            This javascript is used as the central launch point for all functions 
// *                      that need to be invoked during the window onload process.
// *
// ************************************************************************************************

function OnDocumentLoad()
{
    initSlideDownMenu();
}

window.onload = OnDocumentLoad;
