// MNB
// 3/23/09
// accompanies global left-nav-menu-structure.js to customize defaults for each site

//Required to declare the variable used for the default sub division
var defaultTab;

function setCurrentSiteDefault()
{
    // custom for pro video pages
	// automatically opens the Hospitality menu and highlights Commercial Food Services
	YAHOO.widget.TreeView.getNode('treeDiv1',4).toggle(); 

    //Set this to the index of the specific sub division you wish to have highlighted at all times
    defaultTab = 5;
}
	
//Set the styles for the pro video section
YAHOO.util.Event.onDOMReady(setDefaultTabWrapper);

//A wrapper function must be used because the function within is not available until the page loads and the onDOMReady requires a function to exist.
function setDefaultTabWrapper()
{
    //Modifiy this with the function used to load the desired default division
    setLeftNavHospitalityChildHoverFromLabelOnAvailable();
}