/* -------------------------------------------------------------------

	Ess - Sibran Lens
	
	This JavaScript file collects all general functions used
	throughout the site, as well as some smaller specific
	functions.

------------------------------------------------------------------- */




// when the document is ready to be traversed and manipulated...
$(document).ready(function(){
	

	

	// EXTERNAL LINK HANDLER
	$("a.externalLink").click(function(){
		window.open($(this).attr("href"));
		return false;
	});
	
	var homeurl = "/index.html"
	var homeurlen = "/en/index.html"
	
	$(".en #l").click(function(){
  		window.location = homeurlen	;
	});

	$(".nl #l").click(function(){
  		window.location = homeurl;
	});
	

	
	

});

