/*** SET BUTTON'S FOLDER HERE ***/
var buttonFolder_takemehome = "buttons/";

/*** SET BUTTONS' FILENAMES HERE ***/
upSources_takemehome = new Array("button1up_takemehome.png");

overSources_takemehome = new Array("button1over_takemehome.png");


//*** NO MORE SETTINGS BEYOND THIS POINT ***//
totalButtons_takemehome = upSources_takemehome.length;



//*** MAIN BUTTONS FUNCTIONS ***//
// PRELOAD MAIN MENU BUTTON IMAGES
function preload_takemehome() {
	for ( x=0; x<totalButtons_takemehome; x++ ) {
		buttonUp_takemehome = new Image();
		buttonUp_takemehome.src = buttonFolder_takemehome + upSources_takemehome[x];
		buttonOver_takemehome = new Image();
		buttonOver_takemehome.src = buttonFolder_takemehome + overSources_takemehome[x];
	}
}

// SET MOUSEOVER BUTTON
function setOverImg_takemehome(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_takemehome + overSources_takemehome[But-1];
}

// SET MOUSEOUT BUTTON
function setOutImg_takemehome(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_takemehome + upSources_takemehome[But-1];
}


//preload_takemehome();
