document.observe('dom:loaded', function() {
	selectCurrentLink();
});

selectCurrentLink = function() {
	$$('#menu-header a').each(function(anchor) {
		l = window.location + '';
		qry = l.substr(l.indexOf('/',8), l.lastIndexOf('/')+1);
		if(anchor.readAttribute('href') == qry) {
			anchor.up().addClassName('selected');
		}
		
	});
}