/*
-----::: ABCnet.nl © 2011 :::-----
DATE: 01/01/2011
EDITED: 01/01/2011
DESCRIPTION: This is the JavaScript required to activelink Requires jQuery library 
*/
$(document).ready(function() {

   var path = location.pathname.substring(4);
   //alert(path);
   if ( path )
     $('#lmenu a[href$="' + path + '"]').attr('class', 'selected');
	 $('.stmenu01pos a[href$="' + path + '"]').attr('class', 'selectedtop');
	// $('.dsmenu a[href$="' + path + '"]').attr('class', 'selected');
});

