$(document).ready(function() {
						   
	$('#map-content').wrap('<div id="content-wrapper"></div>');
						   
	function pageload(hash) {
		if(hash) {
			$("#content-wrapper").load(hash + ".html #map-content",'',function(){
				$('#content-wrapper').fadeIn('normal');
				$('#load').fadeOut('normal');												   
			});
		} else {
			$("#content-wrapper").load("gallery/location1.html"); //default
		}
	}
	$.historyInit(pageload);			   

	$('#maps a').click(function(){
								  
		var hash = $(this).attr('href');
		hash = hash.replace(/^.*#/, '');
		hash = hash.substr(0,hash.length-5);

		$('#content-wrapper').fadeOut('fast',function(){$.historyLoad(hash)});
		$('#load').remove();
		$('#map-loading').append('<span id="load">LOADING...</span>');
		$('#load').fadeIn('slow');
		return false;
		
	});

});