<!-- Begin

// Hides the Alliance partner details when the page is loaded
function hideBlocks(navID)
{
	
	var divCollection;			// stores all the <div> children of the navigation <ul>.
	var divChild;				// temporary variable. Represents the <div> that is to be changed.
	var divArray = new Array();		// stores references to all the <div> elements that will have their class changed. The hitlist.
	
		
	// 'get' the navigation menu, store it under the 'navigationList' variable.
	navigationList = document.getElementById(navID);
	
	// collect all child <div> elements into a single object.
	divCollection = navigationList.getElementsByTagName("DIV");
	
	// collect all child <div> elements of the current <ul>.
	for(divCounter=0; divCounter < divCollection.length; divCounter++)
	{		
		divArray[divArray.length] = divCollection[divCounter];
	}
	
	// loop thru the 'divArray' and start changing its class.
	for(x=0; x < divArray.length; x++)
	{
		divChild = divArray[x].className = 'displayNone';
	}
}

// toggles the Alliance partner details
function toggleDetails(detailsRef)
{
	detailsElement = document.getElementById(detailsRef);
	currClasName = detailsElement.className;
	
	if ( currClasName == 'displayBlock' )
		detailsElement.className = 'displayNone';
	else
		detailsElement.className = 'displayBlock';
}

// End -->