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