/*** SET BUTTON'S FOLDER HERE ***/
var tourbuttonFolder = "buttons/";

/*** SET BUTTONS' FILENAMES HERE ***/
tourupSources = new Array("tourbutton1up.png","tourbutton2up.png","tourbutton3up.png","tourbutton4up.png","tourbutton5up.png","tourbutton6up.png");

touroverSources = new Array("tourbutton1over.png","tourbutton2over.png","tourbutton3over.png","tourbutton4over.png","tourbutton5over.png","tourbutton6over.png");


//*** NO MORE SETTINGS BEYOND THIS POINT ***//
totalButtons = tourupSources.length;



//*** MAIN BUTTONS FUNCTIONS ***//
// PRELOAD MAIN MENU BUTTON IMAGES
function preload() {
	for ( x=0; x<totalButtons; x++ ) {
		tourbuttonUp = new Image();
		tourbuttonUp.src = tourbuttonFolder + tourupSources[x];
		tourbuttonOver = new Image();
		tourbuttonOver.src = tourbuttonFolder + touroverSources[x];
	}
}

// SET MOUSEOVER BUTTON
function settourOverImg(But, ID) {
	document.getElementById('tourbutton' + But + ID).src = tourbuttonFolder + touroverSources[But-1];
}

// SET MOUSEOUT BUTTON
function settourOutImg(But, ID) {
	document.getElementById('tourbutton' + But + ID).src = tourbuttonFolder + tourupSources[But-1];
}


//preload();
