var showmenu=false;
function init()
{
	closeall();
	showmenu=false;
}

function startmenu()
{
	showmenu=true;
}	

function show(x)
{
if (showmenu==true)
{
	closeall();
	switch(x)
	{
		case "news":
			xpos="215px";
			break;
		case "about":
			xpos="268px";
			break;
		case "members":
			xpos="580px";
			break;
		case "information":
			xpos="655px";
			break;
		case "link":
			xpos="748px";
			break;
	}
	document.getElementById(x).style.left=xpos;
	document.getElementById(x).style.display="block";
	setTimeout("hide('"+x+"')",8000);
}
}
function hide(x)
{
	document.getElementById(x).style.display="none";
	
}
function closeall()
{
	hide('news');
	hide('about');
	hide('members');
	hide('information');
	hide('link');
}

