// JavaScript www.bonmakelaardij.nl 

/*
var currentPhoto = 1;
var nrOfPhotos = 3;

window.onload = function()
{
	window.setInterval( slider, 1000 );
}

function slider()
{
	if( document.getElementById ) {
		var photoStock = document.getElementById( "photoStock" );
		if( currentPhoto < 		
	}	
}
*/

function toggleSubMenu( id )
{
	var subMenu = document.getElementById( id );
	if( subMenu.style.display == "block" ) {
		subMenu.style.display = "none";
	} else {

		subMenu.style.display = "block";
	}
	return false;
}

function openMenu(id) {
	
	if(document.getElementById(id).style.display == 'none') {
		document.getElementById(id).style.display = 'block';
	} else if(document.getElementById(id).style.display == 'block') {
		document.getElementById(id).style.display = 'none';
	} else {
		document.getElementById(id).style.display = 'block';	
	}
}

function refreshMenu(id){
		document.getElementById(id).style.display="block";
}

function initCheck(){
	/*if(window.init()){
		init();
	}*/
}