/* -------------------------------------------------------------------
	Kunstmaan - LIJN
	Acco
------------------------------------------------------------------- */



// when the document is ready to be traversed and manipulated...
/*$(document).ready(function(){
	
	// LINK HANDLER
	// when you click on a link with class externalLink
	$("a.externalLink").click(function(){
		// open a new window with the link's location
		window.open($(this).attr("href"));
		// and do nothing after (to prevent the link from actually firing)
		return false;
	});
	

});*/
