if (window.location.hash) {
	var url = window.location.host + window.location.pathname;
	ar = url.split('/');
	ar[ar.length - 1] = window.location.hash.substr(3);
	url = window.location.protocol + "//" + ar.join("/");
	window.location = url;
}
