<!-- ;

/********************************************************************************
Variables to set.

Remember that to set fontsize and fonttype you set that in the stylesheet
above!
********************************************************************************/

//Making a menu object
oMenu=new menuObj('oMenu') //Place a name for the menu in there. Must be uniqe for each menu

//Setting menu object variables

//Style variables NOTE: The stylesheet have been removed. Use this instead! (some styles are there by default, like position:absolute ++)
oMenu.clMain='padding:5px; font-family:verdana; font-size: 9.5px; font-weight:bold' //The style for the main menus
oMenu.clSub='padding:5px; font-family:verdana; font-size:10px' //The style for the submenus
oMenu.clSubSub='padding:5px; font-family:verdana; font-size:10px' //The style for the subsubmenus
oMenu.clAMain='text-decoration:none; color:#ffffff' //The style for the main links
oMenu.clASub='text-decoration:none; color:#000000' //The style for the sub links
oMenu.clASubSub='text-decoration:none; color:#000000' //The style for the subsub links

//Background bar properties
oMenu.backgroundbar=0 //Set to 0 if no backgroundbar
oMenu.backgroundbarfromleft=0 //The left placement of the backgroundbar in pixel or %
oMenu.backgroundbarfromtop=0 //The top placement of the backgroundbar  in pixel or %
oMenu.backgroundbarsize="0" //The size of the bar in pixel or %
oMenu.backgroundbarcolor="#666666" //The backgroundcolor of the bar

oMenu.mainheight=20 //The height of the main menuitems in pixel or %
oMenu.mainwidth=225 //The width of the main menuitems  in pixel or %

/*These are new variables. In this example they are set like the previous version*/
oMenu.subwidth=155 // ** NEW ** The width of the submenus
oMenu.subheight=19 //The height if the subitems in pixel or % 

oMenu.subsubwidth=oMenu.mainwidth+10 // ** NEW ** The width of the subsubmenus in pixel or % 
oMenu.subsubheight=oMenu.subheight //** NEW ** The height if the subsubitems in pixel or % 


//Writing out the style for the menu (leave this line!)
oMenu.makeStyle()

oMenu.subplacement=oMenu.mainheight //** NEW ** Relative to the main item
oMenu.subsubXplacement=oMenu.subwidth/2 //** NEW ** The X placement of the subsubmenus, relative to the sub item
oMenu.subsubYplacement=7 //** NEW ** The Y placement of the subsubmenus, relative to the sub item

oMenu.mainbgcoloroff[0]='#666666' //The backgroundcolor of the main menuitems
oMenu.mainbgcoloroff[1]='#666666' //The backgroundcolor of the main menuitems
oMenu.mainbgcoloroff[2]='#666666' //The backgroundcolor of the main menuitems
oMenu.mainbgcoloroff[3]='#666666' //The backgroundcolor of the main menuitems
oMenu.mainbgcoloroff[4]='#666666' //The backgroundcolor of the main menuitems
oMenu.mainbgcoloron='#000000' //The backgroundcolor on mouseover of the main menuitems
oMenu.subbgcoloroff='#ffffff' //The backgroundcolor of the sub menuitems
oMenu.subbgcoloron='#cccccc' //The backgroundcolor on mouseover of the sub menuitems
oMenu.subsubbgcoloroff='#cccccc' //The backgroundcolor of the subsub menuitems
oMenu.subsubbgcoloron='#ffffff' //The backgroundcolor on mouseover of the subsub menuitems
oMenu.stayoncolor=1 //Do you want the menus to stay on the mouseovered color when clicked?



oMenu.menuspeed=8 //The speed of the clipping in px
oMenu.menusubspeed=12 //The speed of the submenus clipping in px

oMenu.menurows=1 //Set to 0 if you want rows and to 1 if you want columns

oMenu.menueventon="mouse" //Set this to "mouse" if you want the menus to appear onmouseover, set it to "click" if you want it to appear onclick
oMenu.menueventoff="mouse" //Set this to "mouse" if you them to disappear onmouseout, if not set it to "click"

///Placement of the menuitems

//Example in %:
//oMenu.menuplacement=new Array("20%","40%","60%","50%","65%") //Remember to make the arrays contain as many values as you have main menuitems

//Example in px: (remember to use the ' ' around the numbers)
//oMenu.menuplacement=new Array(10,200,300,400,500,600)
oMenu.menuplacement=new Array(10,130,240,340,540)

//Example right beside eachother (only adding the pxbetween variable)
//oMenu.menuplacement=0

//If you use the "right beside eachother" you cant how many pixel there should be between each here
oMenu.pxbetween=5 //in pixel or %

//And you can set where it should start from the left here
oMenu.fromleft=0 //in pixel or %

//This is how much from the top the menu should be.
oMenu.fromtop=0 //in pixel or %


/********************************************************************************
Construct your menus below
********************************************************************************/

//MAIN 0

//Main items:
// makeMain(MAIN_NUM,'TEXT','LINK') (set link to 0 if you want submenus of this menu item)
oMenu.makeMain(0,'About Jacksonville','/products/',0)
  //Sub items:
  // makeSub(MAIN_NUM,SUB_NUM,'TEXT','LINK',TOTAL) (set link to 0 if you want submenus of this menu item)
  oMenu.makeSub(0,0,'History','jacksonville.html',3)
  oMenu.makeSub(0,1,'Education','education.html',3)
  oMenu.makeSub(0,2,'Maps and Statitistics','maps-statistics.html',3)

//MAIN 1

oMenu.makeMain(1,'Local Attractions','products.html',0)
  //Sub items:
  // makeSub(MAIN_NUM,SUB_NUM,'TEXT','LINK',TOTAL) (set link to 0 if you want submenus of this menu item)
  oMenu.makeSub(1,0,'Taughannock Falls','http://www.taughannock.com/',4)
  oMenu.makeSub(1,1,'Ithaca Art Trail','http://www.arttrail.com/',4)
  oMenu.makeSub(1,2,'Johnson Art Museum','http://www.museum.cornell.edu/',4)
  oMenu.makeSub(1,3,'Jacksonville Park','park.html',4)

//MAIN 2

//Main items:
// makeMain(MAIN_NUM,'TEXT','LINK') (set link to 0 if you want submenus of this menu item)
oMenu.makeMain(2,'Acommodations','products.html',0)
  //Sub items:
  // makeSub(MAIN_NUM,SUB_NUM,'TEXT','LINK',TOTAL) (set link to 0 if you want submenus of this menu item)
  oMenu.makeSub(2,0,'Places to Stay','accommodations.html',1)
  
//MAIN 3

oMenu.makeMain(3,'Jville Community Association','products.html',0)
  //Sub items:
  // makeSub(MAIN_NUM,SUB_NUM,'TEXT','LINK',TOTAL) (set link to 0 if you want submenus of this menu item)
  oMenu.makeSub(3,0,'JCA - About JCA','jca.html',3)
  oMenu.makeSub(3,1,'JCA - Meeting Information','meetings.html',3)
  oMenu.makeSub(3,2,'JCA - Sponsored Events','jville-news.html',3)
  
//MAIN 4

oMenu.makeMain(4,'Community Links','products.html',0)
  //Sub items:
  // makeSub(MAIN_NUM,SUB_NUM,'TEXT','LINK',TOTAL) (set link to 0 if you want submenus of this menu item)
  oMenu.makeSub(4,0,'Town of Ulysses','http://www.ulysses.ny.us/',3)
  oMenu.makeSub(4,1,'Jacksonville Church','http://www.jcumc.com/',3)
  oMenu.makeSub(4,2,'Cayuga Watershed','http://www.cayugawatershed.org/',3)

/********************************************************************************
End menu construction
********************************************************************************/
// end hide -->
// meta http-equiv="pragma" content="no-cache"><meta http-equiv="expires" content="-1"-->