$(document).ready(function() {
						   
	var hash = window.location.hash.substr(1);
	var href = $('#aroundList li a').each(function(){
		var href = $(this).attr('href');
		if(hash==href.substr(0,href.length-4)){
			var toLoad = hash+'.php #load';
			$('#load').load(toLoad)
		}											
	});

	$('#aroundList li a').click(function(){
								  
		var toLoad = $(this).attr('href')+' #load';
		$('#load').hide(loadContent);
		window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-4);
		function loadContent() {
			$('#load').load(toLoad, showNewContent)
		}
		function showNewContent() {
			$('#load').fadeIn(100);
		}

		return false;
		
	});

});


