// BEGIN PRELOAD ARTWORK FOR LOWER LEFT NAVIGATION ON MOPI PAGES

var navButName = new Array("Contents");

var navButName = new Array("Contents");

var navButton = new Array();

for(i=0; i<navButName.length; i++)
{
navButton[i] = new Image(140,30);
navButton[i].src = "mopi/media/navigation/" + navButName[i] + "0.png";
navButton[i+navButName.length] = new Image(140,30);
navButton[i+navButName.length].src = "mopi/media/navigation/" + navButName[i] + "1.png";
}

// END PRELOAD ARTWORK FOR LOWER LEFT NAVIGATION ON MOPI PAGES
//---------------------------------------------------------------------------------------

//BEGIN ROLLOVERS FOR MAIN MOPI NAV BUTTONS

function changeButton(bName,bNum) {
	for(i=0; i<navButName.length; i++)
	{
document.getElementById(navButName[i]).src = "mopi/media/navigation/" + navButName[i] + "0.png";
	}document.getElementById(bName).src = "mopi/media/navigation/" + bName + bNum + ".png";
document.getElementById("navDiv2").style.display = "inline";
document.getElementById(bName).blur();
return;
}


function removeButtons()
{
document.getElementById("navDiv2").style.display = "none";
	for(i=0; i<navButName.length; i++)
	{
document.getElementById(navButName[i]).src = "mopi/media/navigation/" + navButName[i] + "0.png";
	}}


//END ROLLOVERS FOR MAIN MOPI NAV BUTTONS
//---------------------------------------------------------------------------------------
// MOPI
// selectDocument is used in conjunction with the Document selection list in MOPI

function selectDocument(documentSelected)
{
document.chooserForm.documentSelection.value = documentSelected;
document.chooserForm.submit();
}


//------------------------------------------------------------------------
