$(function() {
	
	// E-mail protectie
	$('a.email').each(function(){
		e = this.rel.replace('/','@');
		this.href = 'mailto:' + e;
		$(this).text(e);
	});
	   
	// Spotlight    
	$('.home #spotlight_foto span').cycle({ 
		fx: 'fade',							   
		timeout:  3000, 
		speed:    800,
		random: 1
	}); 
	
	//Menu 
	$('#menu li').append('<div class="divider"></div>'); 
	
	// Collapsor menu
	$('.kolomvak li').has('.children').find('a').collapsor().eq(0).click(function(){return false;});
	
	$('#menu-magazine a')
		 .attr({target: "_blank"
	});

});	

