
	// jquery scripts
	$(document).ready(function () {

		// lightbox laten werken
		$('a.lightbox').lightBox();
		
		// slideshow
		$('#slideshow').cycle({ 
		    fx:    'fade', 
		    speed:  4000,
		    pause: 	1 
		 });

		// sponsors
		$('#sponsors').cycle({ 
		    fx:      'scrollDown', 
		    speed:    3000, 
		    timeout:  3000 
		 });
		 
		// slideshow-fotoalbum
		$('#albumslideshow').cycle({ 
		    fx:    'fade', 
		    speed:  3000,
		    pause: 	1 
		 });			 
		 
		 $('#home').css('visibility', 'visible');		
  
	});	
	
	// voor het gebruik van exotische font gebruiken we Cufon
	Cufon('#columWrapper h1')('#columWrapper h2')('div.article h2');	
	
	
	// show of hide poster
	function showPoster (){
		$('#hidecontent').css('visibility', 'visible');
		$('#poster').fadeIn('slow');
	}

	function hidePoster (){
		$('#hidecontent').css('visibility', 'hidden');
		$('#poster').fadeOut('fast');
	}

	
