window.addEvent('domready', function() {
	var basehref = 'http://'+window.location.host+'/';
	$$('a').each(function(el){
		if(el.href.replace(basehref,'').substr(0,1) == '#'){
			el.href=document.location.href+el.href.replace(basehref,'');
		}
	});
});
