window.addEvent('domready', function() {
	
	var idArray = ['rdm','rsgdurft','prachtfestival','balkon','doublecheck','uur','portret','sporen','plaatje','spelen','journalist','ah','rotterdammer','google','goudeerlijk','cosmovrouw','barcelona','analyse','nacht','rdm_poster','puur','muurschildering','stageverslag','ivn','barcelona2','fresco','revistas1','revistas2','revistas3','gsus','postales','nature','verlaten','huis'];
	
	for (i=0;i<idArray.length;i++) {
		var id = idArray[i];
		var el = $(id);
		
		$(id).fade('hide');
	
		$('button_' + id).addEvent('mouseenter', el.fade.bind(el, 'in'));
		$('button_' + id).addEvent('mouseleave', el.fade.bind(el, 'out'));
		$('button_' + id).addEvent('click', el.fade.bind(el, 'out'));
	}
	
	el = $('contact');
	$('button_contact').addEvent('click', el.fade.bind(el, 'out'));
});

function hide() {
	for (var i = 1; i<=7; i++) {
		if (document.getElementById('smenu'+i)) {
			document.getElementById('smenu'+i).style.display='none';
		}
	}
}

function removeWindow(id) {
	document.getElementById(id).style.display='none';
}

function show(id) {
	document.getElementById(id).style.display = 'block';
}

function loadImage(id) {
	//set loading image
	document.getElementById('loading').style.display='block';
	
	//remove contact window if active
	$('close_contact').fade('out');
	$('top_right_contact').fade('out');
	
	//Load the image
	var bg_img = new Image();
	bg_img.src = "images/" + id + ".jpg";
	document.getElementById('bg_img').src = bg_img.src;
	
	//move the text
	document.getElementById('top_right').innerHTML = document.getElementById(id).innerHTML;
	$('close').fade('in');
	$('top_right').fade('in');
	
	//remove background image
	document.body.style.backgroundImage = 'none';
	
	//remove loading image
	var img = document.getElementById('bg_img');
	if (img) img.onload = imagesLoaded;
}

function imagesLoaded() {    
	document.getElementById('loading').style.display='none';
}

function loadContact() {
	//set loading image
	document.getElementById('loading').style.display='block';
	
	//remove background image
	document.body.style.backgroundImage = 'none';
	
	//remove top right window
	$('close').fade('out');
	$('top_right').fade('out');
	
	//Load the image
	var bg_img = new Image();
	bg_img.src = "images/contact.jpg";
	document.getElementById('bg_img').src = bg_img.src;

	//move the text
	document.getElementById('top_right_contact').innerHTML = document.getElementById('contact').innerHTML;
	$('close_contact').fade('in');
	$('top_right_contact').fade('in');
	
	//remove loading image
	var img = document.getElementById('bg_img');
	if (img) img.onload = imagesLoaded;
	
}

function removeInfoWindow() {
	$('close').fade('out');
	$('top_right').fade('out');
}
			
function removeContactWindow() {
	$('close_contact').fade('out');
	$('top_right_contact').fade('out');
}
			
function removeDivs() {
	$('contact').fade('hide');
	$('top_right').fade('hide');
	$('top_right_contact').fade('hide');
	$('close').fade('hide');
	$('close_contact').fade('hide');
}

window.onload = hide;
window.onload = removeDivs;
