/*** SET BUTTON'S FOLDER HERE ***/
var buttonFolder_poems = "buttons/";

/*** SET BUTTONS' FILENAMES HERE ***/
upSources_poems = new Array("button1up_poems.png","button2up_poems.png","button3up_poems.png","button4up_poems.png","button5up_poems.png","button6up_poems.png");

overSources_poems = new Array("button1over_poems.png","button2over_poems.png","button3over_poems.png","button4over_poems.png","button5over_poems.png","button6over_poems.png");


//*** NO MORE SETTINGS BEYOND THIS POINT ***//
totalButtons_poems = upSources_poems.length;



//*** MAIN BUTTONS FUNCTIONS ***//
// PRELOAD MAIN MENU BUTTON IMAGES
function preload_poems() {
	for ( x=0; x<totalButtons_poems; x++ ) {
		buttonUp_poems = new Image();
		buttonUp_poems.src = buttonFolder_poems + upSources_poems[x];
		buttonOver_poems = new Image();
		buttonOver_poems.src = buttonFolder_poems + overSources_poems[x];
	}
}

// SET MOUSEOVER BUTTON
function setOverImg_poems(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_poems + overSources_poems[But-1];
}

// SET MOUSEOUT BUTTON
function setOutImg_poems(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_poems + upSources_poems[But-1];
}


//preload_poems();
