/*** SET BUTTON'S FOLDER HERE ***/
var buttonFolder_JD = "buttons/";

/*** SET BUTTONS' FILENAMES HERE ***/
upSources_JD = new Array("button1up_JD.png","button2up_JD.png","button3up_JD.png","button4up_JD.png","button5up_JD.png","button6up_JD.png","button7up_JD.png","button8up_JD.png");

overSources_JD = new Array("button1over_JD.png","button2over_JD.png","button3over_JD.png","button4over_JD.png","button5over_JD.png","button6over_JD.png","button7over_JD.png","button8over_JD.png");


//*** NO MORE SETTINGS BEYOND THIS POINT ***//
totalButtons_JD = upSources_JD.length;



//*** MAIN BUTTONS FUNCTIONS ***//
// PRELOAD MAIN MENU BUTTON IMAGES
function preload_JD() {
	for ( x=0; x<totalButtons_JD; x++ ) {
		buttonUp_JD = new Image();
		buttonUp_JD.src = buttonFolder_JD + upSources_JD[x];
		buttonOver_JD = new Image();
		buttonOver_JD.src = buttonFolder_JD + overSources_JD[x];
	}
}

// SET MOUSEOVER BUTTON
function setOverImg_JD(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_JD + overSources_JD[But-1];
}

// SET MOUSEOUT BUTTON
function setOutImg_JD(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_JD + upSources_JD[But-1];
}


//preload_JD();
