/*** SET BUTTON'S FOLDER HERE ***/
var buttonFolder_makes = "buttons/";

/*** SET BUTTONS' FILENAMES HERE ***/
upSources_makes = new Array("button1up_makes.gif","button2up_makes.gif","button3up_makes.gif","button4up_makes.gif","button5up_makes.gif","button6up_makes.gif");

overSources_makes = new Array("button1over_makes.gif","button2over_makes.gif","button3over_makes.gif","button4over_makes.gif","button5over_makes.gif","button6over_makes.gif");


//*** NO MORE SETTINGS BEYOND THIS POINT ***//
totalButtons_makes = upSources_makes.length;



//*** MAIN BUTTONS FUNCTIONS ***//
// PRELOAD MAIN MENU BUTTON IMAGES
function preload_makes() {
	for ( x=0; x<totalButtons_makes; x++ ) {
		buttonUp_makes = new Image();
		buttonUp_makes.src = buttonFolder_makes + upSources_makes[x];
		buttonOver_makes = new Image();
		buttonOver_makes.src = buttonFolder_makes + overSources_makes[x];
	}
}

// SET MOUSEOVER BUTTON
function setOverImg_makes(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_makes + overSources_makes[But-1];
}

// SET MOUSEOUT BUTTON
function setOutImg_makes(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_makes + upSources_makes[But-1];
}


//preload_makes();
