/*** SET BUTTON'S FOLDER HERE ***/
var buttonFolder_menu3 = "buttons/";

/*** SET BUTTONS' FILENAMES HERE ***/
upSources_menu3 = new Array("button1up_menu3.gif","button2up_menu3.gif");

overSources_menu3 = new Array("button1over_menu3.gif","button2over_menu3.gif");


//*** NO MORE SETTINGS BEYOND THIS POINT ***//
totalButtons_menu3 = upSources_menu3.length;



//*** MAIN BUTTONS FUNCTIONS ***//
// PRELOAD MAIN MENU BUTTON IMAGES
function preload_menu3() {
	for ( x=0; x<totalButtons_menu3; x++ ) {
		buttonUp_menu3 = new Image();
		buttonUp_menu3.src = buttonFolder_menu3 + upSources_menu3[x];
		buttonOver_menu3 = new Image();
		buttonOver_menu3.src = buttonFolder_menu3 + overSources_menu3[x];
	}
}

// SET MOUSEOVER BUTTON
function setOverImg_menu3(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_menu3 + overSources_menu3[But-1];
}

// SET MOUSEOUT BUTTON
function setOutImg_menu3(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_menu3 + upSources_menu3[But-1];
}


//preload_menu3();

