/*** SET BUTTON'S FOLDER HERE ***/
var buttonFolder_bottom_men = "buttons/";

/*** SET BUTTONS' FILENAMES HERE ***/
upSources_bottom_men = new Array("button1up_bottom_men.png","button2up_bottom_men.png","button3up_bottom_men.png","button4up_bottom_men.png","button5up_bottom_men.png","button6up_bottom_men.png","button7up_bottom_men.png");

overSources_bottom_men = new Array("button1over_bottom_men.png","button2over_bottom_men.png","button3over_bottom_men.png","button4over_bottom_men.png","button5over_bottom_men.png","button6over_bottom_men.png","button7over_bottom_men.png");


//*** NO MORE SETTINGS BEYOND THIS POINT ***//
totalButtons_bottom_men = upSources_bottom_men.length;



//*** MAIN BUTTONS FUNCTIONS ***//
// PRELOAD MAIN MENU BUTTON IMAGES
function preload_bottom_men() {
	for ( x=0; x<totalButtons_bottom_men; x++ ) {
		buttonUp_bottom_men = new Image();
		buttonUp_bottom_men.src = buttonFolder_bottom_men + upSources_bottom_men[x];
		buttonOver_bottom_men = new Image();
		buttonOver_bottom_men.src = buttonFolder_bottom_men + overSources_bottom_men[x];
	}
}

// SET MOUSEOVER BUTTON
function setOverImg_bottom_men(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_bottom_men + overSources_bottom_men[But-1];
}

// SET MOUSEOUT BUTTON
function setOutImg_bottom_men(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_bottom_men + upSources_bottom_men[But-1];
}


//preload_bottom_men();
