/*** SET BUTTON'S FOLDER HERE ***/
var buttonFolder_Enough = "buttons/";

/*** SET BUTTONS' FILENAMES HERE ***/
upSources_Enough = new Array("button1up_Enough.png");

overSources_Enough = new Array("button1over_Enough.png");


//*** NO MORE SETTINGS BEYOND THIS POINT ***//
totalButtons_Enough = upSources_Enough.length;



//*** MAIN BUTTONS FUNCTIONS ***//
// PRELOAD MAIN MENU BUTTON IMAGES
function preload_Enough() {
	for ( x=0; x<totalButtons_Enough; x++ ) {
		buttonUp_Enough = new Image();
		buttonUp_Enough.src = buttonFolder_Enough + upSources_Enough[x];
		buttonOver_Enough = new Image();
		buttonOver_Enough.src = buttonFolder_Enough + overSources_Enough[x];
	}
}

// SET MOUSEOVER BUTTON
function setOverImg_Enough(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_Enough + overSources_Enough[But-1];
}

// SET MOUSEOUT BUTTON
function setOutImg_Enough(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_Enough + upSources_Enough[But-1];
}


//preload_Enough();
