var teller=1;
function contentaanpassen(nummer,subs){
	if(nummer==2)
	{
		var cont=document.getElementById('contframe');
		cont.src='news.php';
	}
	else
	{
		if(subs=='yes')
		{
			var sub=document.getElementById('menusub'+nummer);
			//sub.style.visibility='visible';
			sub.style.display='block';
			setTimeout('closesub('+nummer+')', 10);
		}
		else
		{
			var cont=document.getElementById('contframe');
			cont.src='content_main.php?id='+nummer;
		}
	}
}

function closesub(nummer,subs){
if(subs=='yes')
	{
		//if(document.getElementById('menusub'+nummer).style.visibility='visible')
		if(document.getElementById('menusub'+nummer).style.display='block')
		{
			//document.getElementById('menusub'+nummer).style.visibility='hidden'
			document.getElementById('menusub'+nummer).style.display='none'
		}
	}
}

function showsub(nummer,subs){
	if(subs=='yes')
	{
		var sub=document.getElementById('menusub'+nummer);
		//sub.style.visibility='visible';
		sub.style.display='block';
		setTimeout('closesub('+nummer+')', 20000);
	}
}
/*$(document).ready(function(){
  $("div.mainmenu").mouseover(function(){
  $("div.menusub").fadeIn("slow");
  });
});*/


var intMove = 60;
var screen_width = screen.width;
