//Declare and preload images ---------------------------------------------
image1 = new Image(); image1.src = "images/layout/bar1.jpg";
image2 = new Image(); image2.src = "images/layout/titleUnderline.jpg";
image3 = new Image(); image3.src = "images/layout/barBottom.jpg";
image4 = new Image(); image4.src = "images/layout/btnLeft_off.jpg";
image5 = new Image(); image5.src = "images/layout/btnCenter_off.jpg";
image6 = new Image(); image6.src = "images/layout/btnRight_off.jpg";
image7 = new Image(); image7.src = "images/layout/subBar1.jpg";
image8 = new Image(); image8.src = "images/layout/subBarBottom.jpg";

image9 = new Image(); image9.src = "images/layout/subBtn_off.jpg";
image10 = new Image(); image10.src = "images/layout/subBtn_on.jpg";
image11 = new Image(); image11.src = "images/layout/subBtn_over.jpg";
image12 = new Image(); image12.src = "images/layout/subTop.jpg";

image13 = new Image(); image13.src = "images/layout/btn_side_on.jpg";
image14 = new Image(); image14.src = "images/layout/btn_side_off.jpg";

image15 = new Image(); image15.src = "images/layout/separator.jpg";

image16 = new Image(); image16.src = "images/layout/btn_top_on.jpg";
image17 = new Image(); image17.src = "images/layout/btn_top_off.jpg";

//-------------------------------------------------------------------------

//Runs once onload
function init()
{
	//Side Button Labels
	var btnSide1 = "PICTURES";
	var btnSide2 = "VIDEO CLIPS";
	var btnSide3 = "OUR CLUB";
	var btnSide4 = "EXECUTIVE";
	var btnSide5 = "CONTACT US";
	var btnSide6 = "CONSTITUTION";
	
	var btnTop7 = "HOME";
	var btnTop8 = "EVENTS";
	var btnTop9 = "BAND INFO";
	var btnTop10 = "HISTORY";
	var btnTop11 = "MEMBERSHIP";
	var btnTop12 = "NEWSLETTER";
	
	document.getElementById("1").innerHTML = btnSide1;
	document.getElementById("2").innerHTML = btnSide2;
	document.getElementById("3").innerHTML = btnSide3;
	document.getElementById("4").innerHTML = btnSide4;
	document.getElementById("5").innerHTML = btnSide5;
	document.getElementById("6").innerHTML = btnSide6;
	
	document.getElementById("7").innerHTML = btnTop7;
	document.getElementById("8").innerHTML = btnTop8;
	document.getElementById("9").innerHTML = btnTop9;
	document.getElementById("10").innerHTML = btnTop10;
	document.getElementById("11").innerHTML = btnTop11;
	document.getElementById("12").innerHTML = btnTop12;

}

//Changes side button image: onmouseover, onmouseout
function sideMainLink(command, id)
{
	if (command == "onmouseover")
	{
		document.getElementById(id).style.background='url(images/layout/btn_side_on.jpg)';
	}
	else if (command == "onmouseout")
	{
		document.getElementById(id).style.background='url(images/layout/btn_side_off.jpg)';
	}
}

//Changes top button image: onmouseover, onmouseout
function topMainLink(command, id)
{
	if (command == "onmouseover")
	{
		document.getElementById(id).style.background='url(images/layout/btn_top_on.jpg)';
	}
	else if (command == "onmouseout")
	{
		document.getElementById(id).style.background='url(images/layout/btn_top_off.jpg)';
	}
}

//Assigns the destination address of the main links (Top and Bottom): onclick
function mainLinkDestination(location)
{
	if (location == "name") { window.location = "http://bartolo.awardspace.com/" }
	
	if (location == "1") { window.location = "pictures.html" }
	if (location == "2") { window.location = "video.html" }
	if (location == "3") { window.location = "ourClub.html" }
	if (location == "4") { window.location = "executive.html" }
	if (location == "5") { window.location = "contact.html" }
	if (location == "6") { window.location = "constitution.html" }
	
	if (location == "7") { window.location = "default.aspx" }
	if (location == "8") { window.location = "events.aspx" }
	if (location == "9") { window.location = "bandInfo.aspx" }
	if (location == "10") { window.location = "history.html" }
	if (location == "11") { window.location = "membership.aspx" }
	if (location == "12") { window.location = "newsletter.aspx" }
	
}
