var temp = location.href.split('/');
var page = (temp[3] != 'journal') ? temp[3] : temp[4];

if ($(page)) $(page).className='here';
else if ($('home')) $('home').className='here';

// Too bad for the old schoolers
function $(el) {
	return document.getElementById(el);
}
