// JavaScript Document

/****************************  To change menu background ****************************/
function mouseOver(cellId) {
	document.getElementById(cellId).style.background="#CDB38D";
}
function muoseOut(cellId) {
	document.getElementById(cellId).style.background="#E8DDC7";
}
/************************************************************************************/

/********************** To change picture from small to large ***********************/
function changeBgImage(whichCell) {
	largeImage ="url(pictures/";
	largeImage+=whichCell;
	largeImage+="l.gif)";				
	document.getElementById("divLarge").style.background=largeImage;		
}
/************************************************************************************/