/*** SET BUTTON'S FOLDER HERE ***/
var buttonFolder_menu2 = "buttons/";

/*** SET BUTTONS' FILENAMES HERE ***/
upSources_menu2 = new Array("button1up_menu2.gif","button2up_menu2.gif","button3up_menu2.gif","button4up_menu2.gif");

overSources_menu2 = new Array("button1over_menu2.gif","button2over_menu2.gif","button3over_menu2.gif","button4over_menu2.gif");


//*** NO MORE SETTINGS BEYOND THIS POINT ***//
totalButtons_menu2 = upSources_menu2.length;



//*** MAIN BUTTONS FUNCTIONS ***//
// PRELOAD MAIN MENU BUTTON IMAGES
function preload_menu2() {
	for ( x=0; x< totalButtons_menu2; x++ ) {
		buttonUp_menu2 = new Image();
		buttonUp_menu2.src = buttonFolder_menu2 + upSources_menu2[x];
		buttonOver_menu2 = new Image();
		buttonOver_menu2.src = buttonFolder_menu2 + overSources_menu2[x];
	}
}

// SET MOUSEOVER BUTTON
function setOverImg_menu2(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_menu2 + overSources_menu2[But-1];
}

// SET MOUSEOUT BUTTON
function setOutImg_menu2(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_menu2 + upSources_menu2[But-1];
}


//preload_menu2();
