		  
      var scrwidth;
      var xtemp;
      var pagewidth= 780;
			var x;
			var y;
			var yitem;
			
			var xitem0;
			var xitem1;
			var xitem2;
			var xitem3;
			var xitem4;
			var xitem5;
			var xitem6;
			var xitem7;
			var xitem8;
			
			if(is.ns5 || is.ie){
				if(is.ns5)
					/*
					scrwidth = document.width
					*/
					xtemp = document.width - pagewidth
				if(is.ie)
					/*
					scrwidth = document.body.clientWidth
					alert("1->"+scrwidth);
					alert("2->"+document.body.clientWidth);
					*/
					xtemp = document.body.clientWidth - pagewidth
				x = ( scrwidth / 2 ) - 390;					
			}
			
			if(is.ns4){
				/*
				scrwidth = innerWidth
				*/
				xtemp = innerWidth - pagewidth		
			}	
		
			x = xtemp /2;
			y = 0;		
			
			xitem0 = x - 10;
			xitem1 = x - 10;
			xitem2 = x + 90;
			xitem3 = x + 205;
			xitem4 = x + 225;
			xitem5 = x + 302;
			xitem6 = x + 398;
			xitem7 = x + 560;
			xitem8 = x + 655;
		
			function setup() {
				theobjs["item0"].objSetTop(127);
				theobjs["item1"].objSetTop(127);
				theobjs["item2"].objSetTop(127);
				theobjs["item3"].objSetTop(127);
				theobjs["item4"].objSetTop(127);
				theobjs["item5"].objSetTop(127);
				theobjs["item6"].objSetTop(127);
				theobjs["item7"].objSetTop(127);
				theobjs["item8"].objSetTop(127);
				
				theobjs["item0"].objSetLeft(xitem0);
				theobjs["item1"].objSetLeft(xitem1);
				theobjs["item2"].objSetLeft(xitem2);
				theobjs["item3"].objSetLeft(xitem3);
				theobjs["item4"].objSetLeft(xitem4);
				theobjs["item5"].objSetLeft(xitem5);
				theobjs["item6"].objSetLeft(xitem6);
				theobjs["item7"].objSetLeft(xitem7);
				theobjs["item8"].objSetLeft(xitem8);
			}
		
			function menu(num) {
				if (fine==1)
				{	
					for (i = 1; i <= 8; i++)
					{
						if ( i == num) {
							theobjs["item"+num+""].objShow();
						}
						else {
							theobjs["item"+i+""].objHide();
						}
					}
				}	
										
			}	
			
						
		document.write('<div id="pagina" style="position:absolute; width: '+ pagewidth +'px; height: 90px; z-index:5; left: '+x+'px; top: '+y+'px; background-color: 000000; layer-background-color: 000000; border: 0px; visibility: visible">');
	
