	oM.construct();
	 
//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)
	oM.m["top1"].b.moveIt(pos[0],pos[1])
	pos = findPos(2)
	oM.m["top2"].b.moveIt(pos[0],pos[1])
	pos = findPos(3)
	oM.m["top3"].b.moveIt(pos[0],pos[1])
	pos = findPos(4)
	oM.m["top4"].b.moveIt(pos[0],pos[1])
	pos = findPos(5)
	oM.m["top5"].b.moveIt(pos[0],pos[1])
	pos = findPos(6)
	oM.m["top6"].b.moveIt(pos[0],pos[1])
	pos = findPos(7)
	oM.m["top7"].b.moveIt(pos[0],pos[1])  
	//Setting the fromtop value
	oM.fromTop = pos[1]
}
placeElements()
//Setting it to re place the elements after resize - the resize is not perfect though.
oM.onafterresize="placeElements()"