/*** 
This is the menu creation code - place it right after you body tag
Feel free to add this to a stand-alone js file and link it to your page.
**/

function drawmenu(){
//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

//Menu properties   
oCMenu.pxBetween=0
//Using the cm_page object to place the menu ----
oCMenu.fromLeft=0
oCMenu.fromTop=0
oCMenu.rows=1
oCMenu.menuPlacement=0
	                                                             
oCMenu.offlineRoot="" 
oCMenu.onlineRoot="" 
oCMenu.resizeCheck=1 
oCMenu.wait=100  // originally 300 
oCMenu.fillImg="spacer00.gif"
oCMenu.zIndex=0

//Background bar properties
oCMenu.useBar=0


//Level properties - ALL properties have to be specified in level 0
oCMenu.level[0]=new cm_makeLevel() //Add this for each new level
oCMenu.level[0].width=60
oCMenu.level[0].height=24 
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=0
oCMenu.level[0].borderY=0
oCMenu.level[0].borderClass="clLevel0border"
oCMenu.level[0].offsetX=0
oCMenu.level[0].offsetY=1
oCMenu.level[0].rows=0
oCMenu.level[0].arrow=0
oCMenu.level[0].arrowWidth=0
oCMenu.level[0].arrowHeight=0
oCMenu.level[0].align="bottom"

// SUB LEVEL[1] PROPERTIES - You have to specify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[1].width=100
oCMenu.level[1].height=23 
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderX=0
oCMenu.level[1].borderY=0
oCMenu.level[1].align="left" 
oCMenu.level[1].borderClass="clLevel1border"

// SUB LEVEL[2] PROPERTIES - You have to specify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[2]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[2].width=100
oCMenu.level[2].height=20 
oCMenu.level[2].regClass="clLevel2"
oCMenu.level[2].overClass="clLevel2over"
oCMenu.level[2].borderX=0
oCMenu.level[2].borderY=0
oCMenu.level[2].align="left" 
oCMenu.level[2].borderClass="clLevel2border"


/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/

oCMenu.makeMenu('top1','','Home','index.html','','60')

oCMenu.makeMenu('top2','','Photo galleries','','','100')
oCMenu.makeMenu('sub21','top2','San Francisco','/sanfran','','100')
oCMenu.makeMenu('sub22','top2','Wedding','http://www.dignall-gardner.co.uk','','100')
oCMenu.makeMenu('sub23','top2','Our cats!','http://www.olliekitten.co.uk','','100')

oCMenu.makeMenu('top3','','??','','','85')

oCMenu.makeMenu('top4','','News','news.html','','60')

oCMenu.makeMenu('top5','','Links','/links.html','','65')
oCMenu.makeMenu('sub51','top5','picturefix.co.uk','http://www.picturefix.co.uk/','','120')
oCMenu.makeMenu('sub52','top5','My (old) office site','http://www.sportseng.org.uk/','','120')

oCMenu.makeMenu('top6','','Contact me','/contact.html','','100')




// New Property to tell code which is the last Top level menu.
// It is used in cool_menus.js in the "getcoords" function
oCMenu.lastTopMenu = "top6";
// ' replace the hardcoded '10' with 'intLastTopLevelID' which holds the last element, enabling it to align left instead of right

//Leave this line - it constructs the menu
oCMenu.construct()		
placeElements()
//Setting it to re place the elements after resize - the resize is not perfect though..
oCMenu.onafterresize="placeElements()"
}


//Extra code to find position:
function findPos(num){
  //alert(num)
  if(bw.ns4){   //Netscape 4
    x = document.layers["layerMenu"+num].pageX
    y = document.layers["layerMenu"+num].pageY
  }else{ //other browsers
    x=0; y=0; var el,temp
    el = bw.ie4?document.all["divMenu"+num]:document.getElementById("divMenu"+num);
    if(el.offsetParent){
      temp = el
      while(temp.offsetParent){ //Looping parent elements to get the offset of them as well
        temp=temp.offsetParent; 
        x+=temp.offsetLeft
        y+=temp.offsetTop;
      }
    }
    x+=el.offsetLeft
    y+=el.offsetTop
  }
  //Returning the x and y as an array
  return [x,y]
}
function placeElements(){
  //Changing the position of ALL top items:

pos = findPos(1)
oCMenu.m["top1"].b.moveIt(pos[0],pos[1])
pos = findPos(2)
oCMenu.m["top2"].b.moveIt(pos[0],pos[1])
pos = findPos(3)
oCMenu.m["top3"].b.moveIt(pos[0],pos[1])
pos = findPos(4)
oCMenu.m["top4"].b.moveIt(pos[0],pos[1])
pos = findPos(5)
oCMenu.m["top5"].b.moveIt(pos[0],pos[1])
pos = findPos(6)
oCMenu.m["top6"].b.moveIt(pos[0],pos[1])


  //Setting the fromtop value
  oCMenu.fromTop = pos[1]
}
