window.addEvent('domready', function() {
	$$('a').each(function(a) {
		if(a.href == location.href) {
			a.addClass("on");
		}
	})
});

