function hashPosition() {
	var loc = ""+window.location;
	var hashIndex = loc.lastIndexOf('#');
	
	if (hashIndex != -1) {
		var hash = loc.substring(hashIndex + 1);

		if (hash != "") {
			document.getElementById(hash).scrollIntoView()
		}
	}
}

$(document).ready(function(){
	hashPosition()
})