/*** SET BUTTON'S FOLDER HERE ***/
var buttonFolder_guest_book = "images/buttons/guestbook/";

/*** SET BUTTONS' FILENAMES HERE ***/
upSources_guest_book = new Array("button1up_guest_book.png","button2up_guest_book.png");

overSources_guest_book = new Array("button1over_guest_book.png","button2over_guest_book.png");


//*** NO MORE SETTINGS BEYOND THIS POINT ***//
totalButtons_guest_book = upSources_guest_book.length;



//*** MAIN BUTTONS FUNCTIONS ***//
// PRELOAD MAIN MENU BUTTON IMAGES
function preload_guest_book() {
	for ( x=0; x<totalButtons_guest_book; x++ ) {
		buttonUp_guest_book = new Image();
		buttonUp_guest_book.src = buttonFolder_guest_book + upSources_guest_book[x];
		buttonOver_guest_book = new Image();
		buttonOver_guest_book.src = buttonFolder_guest_book + overSources_guest_book[x];
	}
}

// SET MOUSEOVER BUTTON
function setOverImg_guest_book(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_guest_book + overSources_guest_book[But-1];
}

// SET MOUSEOUT BUTTON
function setOutImg_guest_book(But, ID) {
	document.getElementById('button' + But + ID).src = buttonFolder_guest_book + upSources_guest_book[But-1];
}


//preload_guest_book();
