window.onload = function()
{
	writeMenuSWF();
	writeContentSWF();
}

// writes the menu to the page and sets the correct selected index of the menu based on the pIndex input parameter
function writeMenuSWF(pIndex)
{
	var swfParams = {};
		swfParams.wmode = "transparent";
		swfParams.quality = "high";
	
	var flashVars = {
		pageIndex: pIndex
		};
	
	swfobject.embedSWF("uvMenu.swf","unknownVectorMenuSWF", "200", "500", "10.0.2", "expressInstall.swf", flashVars, swfParams);

	var menuSWF = document.getElementById("unknownVectorMenuSWF");
	menuSWF.focus = menuSWF.blur();
}

function writeAltContent(targetDiv)
{
	targetDiv.innerHTML = '<p id=\"altContent\">This website requires Flash 10.<br \/>Please download it to proceed:<br \/><a href=\"http://get.adobe.com/flashplayer/\">Download Flash Player 10<\/a><p>';
}