// JavaScript Document

//Preliminary settings for each menu item
var height=72;

//WELCOME
var welcomeL=0;
var welcomeW=106;
var welcomeSR=106;

//ABOUT
var aboutL=108;
var aboutW=134;
var aboutSL=102;
var aboutSR=242;

//CONSULTATIONS
var consultationsL=244;
var consultationsW=194;
var consultationsSL=238;
var consultationsSR=438;

//WORKSHOPS
var workshopsL=440;
var workshopsW=102;
var workshopsSL=434;
var workshopsSR=542;

//MEDIA
var mediaL=544;
var mediaW=70;
var mediaSL=538;
var mediaSR=614;

//BOOKSTORE
var bookstoreL=616;
var bookstoreW=95;
var bookstoreSL=610;
var bookstoreSR=711;

//CONTACT
var contactL=713;
var contactW=97;
var contactSL=707;

//WHEN THE MOUSE HOVERS OVER THE MENU ITEM
function growMenuItem(id,orientation){
	//Switch to the highlighted version of the menu item's image
	//If the menu item is the leftmost (determined by function argument):
		//Start growing animation skewed to the right
		//Make visible and move the right shadow
	//If the menu item is in the middle (determined by function argument):
		//Start growing animation centered
		//Make visible and move the left shadow
		//Make visible and move the right shadow
	//If the menu item is the rightmost (determined by function argument):
		//Start growing animation skewed to the left
		//Make visible and move the left shadow
}

//WHEN THE MOUSE HOVERS OFF THE MENU ITEM
function resetMenuItem(id,orientation,number){
	//Reset the growing for the menu item
	
	//Reset the location of the menu item
	//If the menu item is in the middle and/or right:
	if(orientation=='m'||orientation=='r'){
		//Reset the location of the menu item's left shadow
	}
	//If the menu item is in the middle and/or left:
	if(orientation=='m'||orientation=='l'){
		//Reset the location of the menu item's right shadow
	}
}