$(document).ready(function(){

	// Bij alle anker links de pagina url ervoor plakken
	sCurrentUrl = window.location.href;
	var iDashPos = sCurrentUrl.indexOf('#', 0);
	if(iDashPos !== -1){
		sCurrentUrl = sCurrentUrl.substring(0,iDashPos);
	}
	$('a[href^="#"]').each(function(){
	   $(this).attr('href',sCurrentUrl + $(this).attr('href'));
	});
	
	$("#cal-event").calendar({});
	
});



