$(document).ready(function()
{
	var theHash=location.hash.substring(1);
	if(theHash==parseInt(theHash))
	{
		var theImageOffset=$('#content_img').offset();
		var theImageTop=theImageOffset.top;
		var theImageHash=parseInt(theImageTop) + parseInt(theHash);
		window.scrollTo(0,theImageHash);
	}
/*	$('.hash').click(function()
	{
		thePath=location.pathname;
		theHref=$(this).attr('href');
		theHref=theHref.substring(0,theHref.lastIndexOf('/')+1);
		if(thePath==theHref)
		{
			document.location.reload();
		}
	});*/
});

