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

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

overSources_takehomeco = new Array("button1over_takehomeco.png");


//*** NO MORE SETTINGS BEYOND THIS POINT ***//
totalButtons_takehomeco = upSources_takehomeco.length;



//*** MAIN BUTTONS FUNCTIONS ***//
// PRELOAD MAIN MENU BUTTON IMAGES
function preload_takehomeco() {
	for ( x=0; x<totalButtons_takehomeco; x++ ) {
		buttonUp_takehomeco = new Image();
		buttonUp_takehomeco.src = buttonFolder_takehomeco + upSources_takehomeco[x];
		buttonOver_takehomeco = new Image();
		buttonOver_takehomeco.src = buttonFolder_takehomeco + overSources_takehomeco[x];
	}
}

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

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


//preload_takehomeco();
