//Variables to set
between=28 //The pixel between the menus and the submenus
mainheight=25 //The height of the mainmenus
subheight=22 //The height of the submenus
pxspeed=13 //The pixel speed of the animation
timspeed=15 //The timer speed of the animation
menuy=75 //The top placement of the menu.
menux=0 //The left placement of the menu

//Images - Play with these
level0_regular="level0_regular.gif"
level0_round="level0_round.gif"
level1_regular="level1_regular.gif"
level1_round="level1_round.gif"
level1_sub="level1_sub.gif"
level1_sub_round="level1_sub_round.gif"
level1_round2="level1_round2.gif"
level2_regular="level2_regular.gif"
level2_round="level2_round.gif"

//Leave this line
preLoadBackgrounds(level0_regular,level0_round,level1_regular,level1_round,level1_sub,level1_sub_round,level1_round2,level2_regular,level2_round)


//There are 3 different types of menus you can make
//top = Main menus
//sub = Sub menus
//sub2 = SubSub menus

//You control the look of the menus in the stylesheet

//makeMenu('TYPE','TEXT','LINK','TARGET', 'END (THE LAST MENU)')
//Menu 0: Home
makeMenu('top','Home','home.html')
	//makeMenu('sub','blah','/news/index.asp')
	//makeMenu('sub','The Winery','/news/archive.asp')

//Menu 1: History 
makeMenu('top','History')
	makeMenu('sub','Complete History','history.html')
	makeMenu('sub','Our Vineyard','history.html#Vineyard')
	makeMenu('sub','Our Wines','history.html#Wines')

//Menu 2: News & Events
makeMenu('top','News & Events')
	makeMenu('sub','Current News','news.html')
	makeMenu('sub','Current Events','news.html#Events')
	//makeMenu('sub','Categories')
	  //makeMenu('sub2','Menu scripts','/script/search.asp?category=menu')
	  //makeMenu('sub2','Text scripts','/script/search.asp?category=text')
	  //makeMenu('sub2','Animation scripts','/script/search.asp?category=animation')
	  //makeMenu('sub2','Other scripts','/script/search.asp?category=other')        

//Menu 3: Our Wines    
makeMenu('top','Our Wines')
  makeMenu('sub','Current Wine List','wine.html')
  makeMenu('sub','Semillon','wine.html#Semillon')
  makeMenu('sub','Chardonnay','wine.html#Chardonnay')
  makeMenu('sub','Pinot Noir','wine.html#Pinot')
  makeMenu('sub','Cabernet Sauvignon','wine.html#Cabernet')


//Menu 4: Awards  
makeMenu('top','Awards')
  makeMenu('sub','Full List','awards.html')
  makeMenu('sub','Gold Medals','awards.html#Gold')
  makeMenu('sub','Silver Medals','awards.html#Silver')
  makeMenu('sub','Bronze Medals','awards.html#Bronze')
  makeMenu('sub','Trophies & Awards','awards.html#Trophies')

//Menu 5: Orders
makeMenu('top','Orders','orders.html')

//Menu 5: Map
makeMenu('top','Map','map.html')
  
//Menu 6: Contact Us  
makeMenu('top','Contact Us','contact.html')

//Menu 7: Other Links  
makeMenu('top','Other Links','other.html')


//Starting the menu
onload=SlideMenuInit;
