$(function(){ if (location.pathname.substring(1))
  $('#mainlinks a[@href*="' + location.pathname.substring(1,location.pathname.indexOf("/",1)) + '"]')
    .attr('class', 'selected')
});

$(function(){ if (location.pathname.substring(1))
  var path =  location.pathname.substring(1,location.pathname.indexOf("/",location.pathname.indexOf("/",1)+1)+1);
  if(location.pathname.indexOf("/",location.pathname.indexOf("/",1)+1) < 0){ path = location.pathname.substring(1); }
  $('.sidelinks a[@href$="' + path + '"]')
    .attr('class', 'selected')
	//if(location.pathname.indexOf("/",location.pathname.indexOf("/",1)+1) < 0){ alert('secondslashnotfound'); }
	//alert(location.pathname.substring(1,location.pathname.indexOf("/",location.pathname.indexOf("/",1)+1)+1));
});
/*
$(function(){ if (location.pathname.substring(1))
  $('.sidelinks li[a.selected]').attr('class', 'selected')
});*/
