/*** SET BUTTON'S FOLDER HERE ***/
var buttonFolder_marchconce = "buttons/";

/*** SET BUTTONS' FILENAMES HERE ***/
upSources_marchconce = new Array("button1up_marchconce.png","button2up_marchconce.png");

overSources_marchconce = new Array("button1over_marchconce.png","button2over_marchconce.png");


//*** NO MORE SETTINGS BEYOND THIS POINT ***//
totalButtons_marchconce = upSources_marchconce.length;



//*** MAIN BUTTONS FUNCTIONS ***//
// PRELOAD MAIN MENU BUTTON IMAGES
function preload_marchconce() {
	for ( x=0; x<totalButtons_marchconce; x++ ) {
		buttonUp_marchconce = new Image();
		buttonUp_marchconce.src = buttonFolder_marchconce + upSources_marchconce[x];
		buttonOver_marchconce = new Image();
		buttonOver_marchconce.src = buttonFolder_marchconce + overSources_marchconce[x];
	}
}

// SET MOUSEOVER BUTTON
function setOverImg_marchconce(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_marchconce + overSources_marchconce[But-1];
}

// SET MOUSEOUT BUTTON
function setOutImg_marchconce(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_marchconce + upSources_marchconce[But-1];
}


//preload_marchconce();

