sniffBrowsers();

menuItemBullet = new bulletPoint("bullets/one/menu_off.gif","bullets/one/menu_on.gif");
labelBullet = new bulletPoint("bullets/one/header_off.gif","bullets/one/header_on.gif");
subMenuBullet = new bulletPoint("bullets/one/sub_header_off.gif","bullets/one/sub_header_on.gif");

myTest = new menuBar('myTest',1300, 'horizontal');
myTest.height = 20;
myTest.addLabel('labelBullet', 'HOME', 1, 140, '#333333', '#75C8FF',  'index.html', 'center');
myTest.addLabel('labelBullet', 'INFO', 2, 140,  '#333333', '#75C8FF','info.html', 'center');
myTest.addLabel('labelBullet', 'LOCATION', 3, 140,  '#333333', '#75C8FF','location.html', 'center');
myTest.addLabel('labelBullet', 'CHEFS', 4, 140,'#333333', '#75C8FF', 'chefs.html', 'center');
myTest.addLabel('labelBullet', 'MUSIC', 5, 140,'#333333', '#75C8FF', 'music.html', 'center');
myTest.addLabel('labelBullet', 'RESTAURANTS ', 6, 140,'#333333', '#75C8FF', 'food.html', 'center');
myTest.addLabel('labelBullet', 'WINE & BEER', 7, 190,'#333333', '#75C8FF', 'beverages.html', 'center');
myTest.addLabel('labelBullet', 'TICKETS', 8, 140, '#333333', '#75C8FF', 'tickets.html', 'center');
myTest.addLabel('labelBullet', 'ACCOMMODATION', 9, 140, '#333333', '#75C8FF', 'accommodation.html', 'center');
myTest.addLabel('labelBullet', 'PHOTOS', 10, 140, '#333333', '#75C8FF', 'photos.html', 'center');
myTest.addLabel('labelBullet', 'CONTACT US', 11, 140, '#333333', '#75C8FF', 'contactus.html', 'center');
myTest.addLabel('labelBullet', 'SCHEDULE', 12, 140, '#333333', '#75C8FF', 'runsheet.html', 'center');


menus[1] = new menu(140, 'vertical', '', '');
menus[1].height = 17;
menus[1].addItem('menuItemBullet', '', null, 120, '', '', '', 'left');
menus[1].writeMenu();

menus[2] = new menu(140, 'vertical', '', '');
menus[2].height = 17;
menus[2].writeMenu();

menus[3] = new menu(140, 'vertical', '', '');
menus[3].height = 17;
menus[3].writeMenu();

menus[4] = new menu(120, 'vertical', '', '');
menus[4].height = 17;
menus[4].writeMenu();

menus[5] = new menu(140, 'vertical', '', '');
menus[5].height = 17;
menus[5].writeMenu();

menus[6] = new menu(140, 'vertical', '', '');
menus[6].height = 17;
menus[6].writeMenu();

menus[7] = new menu(140, 'vertical', '', '');
menus[7].height = 17;
menus[7].writeMenu();

menus[8] = new menu(140, 'vertical', '', '');
menus[8].height = 17;
menus[8].writeMenu();

menus[9] = new menu(140, 'vertical', '', '');
menus[9].height = 17;
menus[9].writeMenu();

menus[10] = new menu(140, 'vertical', '', '');
menus[10].height = 17;
menus[10].writeMenu();

menus[11] = new menu(140, 'vertical', '', '');
menus[11].height = 17;
menus[11].writeMenu();

menus[12] = new menu(140, 'vertical', '', '');
menus[12].height = 17;
menus[12].writeMenu();



menus[1].align='center';
menus[2].align='center';
menus[3].align='center';
menus[4].align='center';
menus[5].align='center';
menus[6].align='center';
menus[7].align='center';
menus[8].align='center';
menus[9].align='center';






<!--

var timer = null;
var floatHeight  = 70 + 3; //added margin
var floatWidth   = 40 + 3; //added margin

var obj = null;
var IE=0, NS=0;

	// Initializing function, must be called on onLoad event in BODY tag

function init()
{
    	 // get the object as per the browser
    obj = document.layers ? document.layers["float"] :		 
    document.getElementById ?  document.getElementById("float").style :
    document.all["float"].style;
								
         // Detect the browser
    IE  = (-1 != navigator.appVersion.indexOf("MSIE")) ? 1 : 0;
    NS  = ("Netscape" == navigator.appName) ? 1 : 0;

    positionFloat(4); 	 // position initially
    
         // repositioning the layer	
    if(IE)
    { 
         self.onscroll = function(){ positionFloat(4); }
         self.onresize = function(){ positionFloat(4); }   //when window is resized
    }
    else if(NS)
    { timer = setInterval("positionFloat(4)",100);}
}
 
	// Function which actually positions the layer 	

function positionFloat(iPos)
{
   if(IE)          // IE specific code
   {
     switch(iPos)
     {
   	case 1 :  			// Top Left
      		obj.left = document.body.scrollLeft;
      		obj.top =  document.body.scrollTop;
      		break;
   	case 2 :  			// Top Right
      		obj.left = document.body.scrollLeft + document.body.clientWidth  - floatWidth;;
      		obj.top =  document.body.scrollTop;
      		break;
   	case 3 :  			// Bottom Left
      		obj.left = document.body.scrollLeft;
      		obj.top =  document.body.scrollTop + document.body.clientHeight  - floatHeight;
      		break;
   	case 4 :  			//Bottom Right
      		obj.left = document.body.scrollLeft + document.body.clientWidth  - floatWidth;
      		obj.top =  document.body.scrollTop + document.body.clientHeight  - floatHeight;
      		break;
   	case 5 :  	   		// CENTER
      		obj.left = document.body.scrollLeft + Math.floor((document.body.clientWidth/2) - (floatWidth/2));
      		obj.top =  document.body.scrollTop + Math.floor((document.body.clientHeight/2) - (floatHeight/2));
      		break;
     }
   }
   else if(NS)     // Netscape specific code
   {
     switch(iPos)
     {
   	case 1 :  			// Top Left
      		obj.left = self.pageXOffset;
    		obj.top =  self.pageYOffset;
      		break;
   	case 2 :  			// Top Right
      		obj.left =  self.pageXOffset + self.innerWidth - floatWidth - 15;
    		obj.top =  self.pageYOffset ;
      		break;
   	case 3 :  			// Bottom Left
      		obj.left =  self.pageXOffset;
    		obj.top =  self.pageYOffset  + self.innerHeight - floatHeight;
      		break;
   	case 4 :  			//Bottom Right
      		obj.left =  self.pageXOffset + self.innerWidth - floatWidth - 15;
    		obj.top =  self.pageYOffset  + self.innerHeight - floatHeight;
      		break;
   	case 5 :  	   		// CENTER
      		obj.left =  self.pageXOffset + Math.floor((self.innerWidth/2) - (floatWidth/2) - 15);
      		obj.top =  self.pageYOffset  + Math.floor((self.innerHeight/2) - (floatHeight));
      		break;
     }
   }
}
// -->


