<!--
var menutimer1 =  null, menutimer2 = null, menutime = 500, current = null;
var i;
yshift = 30;
var leftstart;

menup = Array(76,79,56,61,78,62,62,57,42);


// Browser check
var NewNS = document.getElementById&&!document.all;
var NewIE = document.getElementById&&document.all;
var New = NewNS||NewIE;
var OldNS = document.layers;
var OldIE = document.all;
var Old = (!OldIE&&!OldNS&&!New);


function getObject(o) {
	if (New)
		return document.getElementById(o);
	else if (OldIE)
		return document.All[o];
	else if(OldNS)
		return document.layers[o];
	else
		return document.o;
}

function move(o,x,y) {
	if(OldNS) {
		getObject(o).top = y;
		getObject(o).left = x;
	}
	else {
		getObject(o).style.top = y+'px';
		getObject(o).style.left = x+'px';
	}
}

function renew(o) {
	a = getObject(o);
	a.style.display = "inline";
}

function buildme() {
	var next = leftstart;
	move('AMcontent',next,yshift);
	move('Logo',next,0);
	next += 160;
	for(i=1;i<=menup.length;i++) {
		move('menu'+i,next,0);
		move('submenu'+i,next,yshift);
		// ERROR!
		//if(NewNS) {
		//	getObject('menu'+i).style.clip = 5;
		//	getObject('submenu'+i).style.width = getObject('submenu'+i).style.width - 5;
		//}
		
		next += menup[i-1];
		
		next += 5;
		
	}

	// right align submenu9
	var subm = leftstart + 780 - 74;
	if(document.all)
		subm += 5;
	move('submenu9',subm,yshift);
}

function initme( ) { // initialises the menus
	if(OldNS||NewNS)
		leftstart = (innerWidth - 780)/2;
	else
		leftstart = (document.body.offsetWidth - 780)/2;
	if(leftstart<0)
		leftstart = 0;
	buildme();
}

function show(o) {
	if(OldNS)
			getObject(o).visibility = 'visible';
	else
			getObject(o).style.visibility = 'visible';
}

function hide(o) {
	if(OldNS)
			getObject(o).visibility = 'hidden';
	else
			getObject(o).style.visibility = 'hidden';
}

function hidethis( ) {
	if(current)
		hide(current);
}

function showIt(o) {
	hidethis();
	clearTimeout(menutimer1);
	clearTimeout(menutimer2);
	show(o);
	current = o;
}

/* Start the first counter */
function hideIt() {
	menutimer1=setTimeout("hidethis()",menutime);
}

/* Start the second counter */
function hideMe() {
	menutimer2=setTimeout("hidethis()",menutime);
}


/* If the window get's resized, it's time to set the page */
onresize= function(){ setTimeout('initme()',100); };

// show/hide script
 	var AMtimer1=null,AMtimer2=null,AMtime=500;
 	
 	var d = document;
 	
 	function AMshowLinks() {
 		clearTimeout(AMtimer1);
     clearTimeout(AMtimer2);
     
 		if(d.all) {
 			d.all['assocorg'].style.visibility = 'visible';
 		}
 		else if(d.layers) {
 			d.layers['assocorg'].visibility = 'visible';
 		}
 		else if (d.getElementById) {
 			d.getElementById('assocorg').style.visibility = 'visible';
 		}
 	}
 	
 	function AMhideLinks() {
 		AMtimer1=setTimeout("AMhide()",AMtime);
 	}
 	
 	function AMhideSelf() {
 		AMtimer2=setTimeout("AMhide()",AMtime);
 	}
 
 	function AMhide() {
 		if(d.all) {
 			d.all['assocorg'].style.visibility = 'hidden';
 		}
 		else if(d.layers) {
 			d.layers['assocorg'].visibility = 'hidden';
 		}
 		else if (d.getElementById) {
 			d.getElementById('assocorg').style.visibility = 'hidden';
 		}
	}

// -->
