/*zie http://docs.jquery.com/Tutorials:Auto-Selecting_Navigation voor meer info*/
jQuery(document).ready(function($){
   var path = location.pathname.substring(1);
   if ( path )
     jQuery('#simplemenu a[@href$="' + path + '"]').attr('class', 'selected');
 });
