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");

myTest2 = new menuBar('myTest2',1000, 'horizontal', '#BC9B4E', '#BC9B4E');
myTest2.height = 35;
myTest2.addLabel('labelBullet', 'GOLD LADY FUNERALS', 11, 142,  '#957937', '#46311E','goldlady.html', 'center');
myTest2.addLabel('labelBullet', 'INTEGRITY FUNERAL PLAN OF AUSTRALIA', 12, 142,  '#957937', '#46311E','prepare.html', 'center');
myTest2.addLabel('labelBullet', 'ARRANGE YOUR OWN FUNERAL', 13, 142,'#957937', '#46311E', 'arrange.html', 'center' );


menus[11] = new menu(142, 'vertical', '', '');
menus[11].height = 15;
menus[11].addItem('menuItemBullet', '', null, 142, '', '', '', 'center');
menus[11].writeMenu();

menus[12] = new menu(142, 'vertical', '', '');
menus[12].height = 1;
menus[12].addItem('menuItemBullet', '', null, 142, '', '','', 'center');
menus[12].writeMenu();

menus[13] = new menu(142, 'vertical', '', '');
menus[13].height = 1;
menus[13].addItem('menuItemBullet', '', null, 142, '', '', '', 'center');
menus[13].writeMenu();





<!--

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.center = document.body.scrollLeft;
      		obj.top =  document.body.scrollTop;
      		break;
   	case 2 :  			// Top Right
      		obj.center = document.body.scrollLeft + document.body.clientWidth  - floatWidth;;
      		obj.top =  document.body.scrollTop;
      		break;
   	case 3 :  			// Bottom Left
      		obj.center = document.body.scrollLeft;
      		obj.top =  document.body.scrollTop + document.body.clientHeight  - floatHeight;
      		break;
   	case 4 :  			//Bottom Right
      		obj.center = document.body.scrollLeft + document.body.clientWidth  - floatWidth;
      		obj.top =  document.body.scrollTop + document.body.clientHeight  - floatHeight;
      		break;
   	case 5 :  	   		// CENTER
      		obj.center = 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.center = self.pageXOffset;
    		obj.top =  self.pageYOffset;
      		break;
   	case 2 :  			// Top Right
      		obj.center =  self.pageXOffset + self.innerWidth - floatWidth - 15;
    		obj.top =  self.pageYOffset ;
      		break;
   	case 3 :  			// Bottom Left
      		obj.center =  self.pageXOffset;
    		obj.top =  self.pageYOffset  + self.innerHeight - floatHeight;
      		break;
   	case 4 :  			//Bottom Right
      		obj.center =  self.pageXOffset + self.innerWidth - floatWidth - 15;
    		obj.top =  self.pageYOffset  + self.innerHeight - floatHeight;
      		break;
   	case 5 :  	   		// CENTER
      		obj.center =  self.pageXOffset + Math.floor((self.innerWidth/2) - (floatWidth/2) - 15);
      		obj.top =  self.pageYOffset  + Math.floor((self.innerHeight/2) - (floatHeight));
      		break;
     }
   }
}
// -->


