$(document).ready(function() {
	$(function(){	// "active" als class toevoegen aan de actieve link in de navigatie
	   var path = location.pathname.substring(1);
	   if ( path ){
		 $('#navHolder a[@href$="/' + path + '"]').addClass('active');
	   }
	 });

	$.get("/data/token.ajax",function(txt){
		$(".securedForm").append('<input type="hidden" name="ts" value="'+txt+'" />');
	});
});
