/*** SET BUTTON'S FOLDER HERE ***/
var buttonFolder_linkshome = "buttons/";

/*** SET BUTTONS' FILENAMES HERE ***/
upSources_linkshome = new Array("button1up_linkshome.png");

overSources_linkshome = new Array("button1over_linkshome.png");


//*** NO MORE SETTINGS BEYOND THIS POINT ***//
totalButtons_linkshome = upSources_linkshome.length;



//*** MAIN BUTTONS FUNCTIONS ***//
// PRELOAD MAIN MENU BUTTON IMAGES
function preload_linkshome() {
	for ( x=0; x<totalButtons_linkshome; x++ ) {
		buttonUp_linkshome = new Image();
		buttonUp_linkshome.src = buttonFolder_linkshome + upSources_linkshome[x];
		buttonOver_linkshome = new Image();
		buttonOver_linkshome.src = buttonFolder_linkshome + overSources_linkshome[x];
	}
}

// SET MOUSEOVER BUTTON
function setOverImg_linkshome(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_linkshome + overSources_linkshome[But-1];
}

// SET MOUSEOUT BUTTON
function setOutImg_linkshome(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_linkshome + upSources_linkshome[But-1];
}


//preload_linkshome();

