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

/*** SET BUTTONS' FILENAMES HERE ***/
upSources_gpdmenu1 = new Array("button1up_gpdmenu1.png","button2up_gpdmenu1.png");

overSources_gpdmenu1 = new Array("button1over_gpdmenu1.png","button2over_gpdmenu1.png");


//*** NO MORE SETTINGS BEYOND THIS POINT ***//
totalButtons_gpdmenu1 = upSources_gpdmenu1.length;



//*** MAIN BUTTONS FUNCTIONS ***//
// PRELOAD MAIN MENU BUTTON IMAGES
function preload_gpdmenu1() {
	for ( x=0; x<totalButtons_gpdmenu1; x++ ) {
		buttonUp_gpdmenu1 = new Image();
		buttonUp_gpdmenu1.src = buttonFolder_gpdmenu1 + upSources_gpdmenu1[x];
		buttonOver_gpdmenu1 = new Image();
		buttonOver_gpdmenu1.src = buttonFolder_gpdmenu1 + overSources_gpdmenu1[x];
	}
}

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

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


//preload_gpdmenu1();
