/*$(document).ready(function() {
	$(window)._scrollable(); // When scrolling the window

	$('#content').scrollTo(location.hash);
});*/


//$(document).ready(function(){
//   $('#content').onload(function(e){
//      changeUrl();
//      e.preventDefault();
//   });
//}); 
$(document).ready(function() {
	$(function(){
		$(window).hashchange( function(){
			jumpUrl();
		})
		$(window).hashchange();
	});
});


function jumpUrl(){
	if(location.hash)$('#content').scrollTo(location.hash,1000,{offset:-140});
}

