doAddLoadEvent = function (){
	loadLightBoxImages();	
}

function loadLightBoxImages(){

	elements = document.getElementById('images').getElementsByTagName('img');
	
	for( i = 0; i < elements.length; i++){
		elements[i].style.display = 'block';
	}
	
	document.getElementById('img_loading').style.display = 'none';
}


function planRoute(){
	code = document.getElementById('route_postcode').value;
	adres = document.getElementById('route_adres').value;
	city = document.getElementById('route_plaats').value;	
	if(code && adres && city ){
		window.open( 'http://maps.google.nl/maps?f=d&source=s_d&saddr=Zuidkade+229,+2741+Waddinxveen,Zuid-Holland&daddr='+ adres +','+code+' '+ city+'&hl=nl&geocode=&mra=ls&sll=52.028756,4.66184&sspn=0.009664,0.027788&ie=UTF8&z=13');
	}else{
		alert( 'Gaarne alle routeplanner velden invullen!' )	;
	}
}


