/*
-----::: 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(1);
   if ( path )
     $('.tmenu01 a[href$="' + path + '"]').attr('class', 'selected');
	 $('.stmenu01 a[href$="' + path + '"]').attr('class', 'selected');
	 
	 
	 /*$('.main-right').hover(
							
					function () {
						
						$('.main-right').css('overflow','auto');
						},
						function () {
							$('.main-right').css('overflow','hidden')
							});*/
});

