
         function init(){


preloadImage('gfx/horizontaal-wit.png','gfx/horizontaal-wit-onder.png','gfx/hoekje-rechtsboven.png','gfx/ebel-wit-rechtsonder.png');

}



function showFullSizeImage (img,title){
                  document.getElementById('fullscreenContainer').style.background = 'url(\''+img+'\') center no-repeat';
                  document.getElementById('fullscreenContainer').title = 'Op de foto: '+title+' - Klik om de afbeelding te verbergen';
                  document.getElementById('fullscreenBG').style.display = 'block';
                  document.getElementById('fullscreenContainer').style.display = 'block';
				
            }


     var arImages=new Array();

     function preloadImage() {
        var temp = preloadImage.arguments;
        for(x=0; x < temp.length; x++) {
         arImages[x]=new Image();
         arImages[x].src=preloadImage.arguments[x];
        }
       }
               function makeCellVisible(obj_id) {
			if (document.getElementById(obj_id) != null){
				var obj = document.getElementById(obj_id);
				obj.style.display = 'table-cell';
			}
		}

		function makeVisible(obj_id) {
			if (document.getElementById(obj_id) != null){
				var obj = document.getElementById(obj_id);
				obj.style.display = 'block';
			}
		}

		function makeInvisible(obj_id) {
			if (document.getElementById(obj_id) != null){
				var obj = document.getElementById(obj_id);
				obj.style.display = 'none';
			}
		}

		function witteAankondiging() {
			var aankondiging = document.getElementById('aankondiging');
			aankondiging.className = 'aankondiging_wit';

			var aankondiging_onder = document.getElementById('aankondiging_onder');
			aankondiging_onder.className = 'aankondiging_onder_wit';
		}

		function doorzichtigeAankondiging() {
			var aankondiging = document.getElementById('aankondiging');
			aankondiging.className = 'aankondiging_doorzichtig';

			var aankondiging_onder = document.getElementById('aankondiging_onder');
			aankondiging_onder.className = 'aankondiging_doorzichtig';
		}

