/*** SET BUTTON'S FOLDER HERE ***/
var buttonFolder_menu1 = "buttons/";

/*** SET BUTTONS' FILENAMES HERE ***/
upSources_menu1 = new Array("button1up_menu1.gif","button2up_menu1.gif","button3up_menu1.gif","button4up_menu1.gif");

overSources_menu1 = new Array("button1over_menu1.gif","button2over_menu1.gif","button3over_menu1.gif","button4over_menu1.gif");


//*** NO MORE SETTINGS BEYOND THIS POINT ***//
totalButtons_menu1 = upSources_menu1.length;



//*** MAIN BUTTONS FUNCTIONS ***//
// PRELOAD MAIN MENU BUTTON IMAGES
function preload_menu1() {
	for ( x=0; x< totalButtons_menu1; x++ ) {
		buttonUp_menu1 = new Image();
		buttonUp_menu1.src = buttonFolder_menu1 + upSources_menu1[x];
		buttonOver_menu1 = new Image();
		buttonOver_menu1.src = buttonFolder_menu1 + overSources_menu1[x];
	}
}

// SET MOUSEOVER BUTTON
function setOverImg_menu1(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_menu1 + overSources_menu1[But-1];
}

// SET MOUSEOUT BUTTON
function setOutImg_menu1(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_menu1 + upSources_menu1[But-1];
}


//preload_menu1();
