/*** SET BUTTON'S FOLDER HERE ***/
var buttonFolder_ozjd = "buttons/";

/*** SET BUTTONS' FILENAMES HERE ***/
upSources_ozjd = new Array("button1up_ozjd.png","button2up_ozjd.png");

overSources_ozjd = new Array("button1over_ozjd.png","button2over_ozjd.png");


//*** NO MORE SETTINGS BEYOND THIS POINT ***//
totalButtons_ozjd = upSources_ozjd.length;



//*** MAIN BUTTONS FUNCTIONS ***//
// PRELOAD MAIN MENU BUTTON IMAGES
function preload_ozjd() {
	for ( x=0; x<totalButtons_ozjd; x++ ) {
		buttonUp_ozjd = new Image();
		buttonUp_ozjd.src = buttonFolder_ozjd + upSources_ozjd[x];
		buttonOver_ozjd = new Image();
		buttonOver_ozjd.src = buttonFolder_ozjd + overSources_ozjd[x];
	}
}

// SET MOUSEOVER BUTTON
function setOverImg_ozjd(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_ozjd + overSources_ozjd[But-1];
}

// SET MOUSEOUT BUTTON
function setOutImg_ozjd(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_ozjd + upSources_ozjd[But-1];
}


//preload_ozjd();
