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

	$('#galnav li a').click(function(){
								  
		var toLoad = $(this).attr('href')+' #gallerycontent';
		$('#gallerycontent').hide('fast',loadContent);
		$('#load').remove();
		$('#wrapper').append('<span id="load">LOADING...</span>');
		
		$('#load').fadeIn('normal');
		window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-5);
		
		function loadContent() {
			$('#gallerycontent').load(toLoad,'',showNewContent())
		}
		
		function showNewContent() {
			$('#gallerycontent').show('normal',hideLoader());
		}
		function hideLoader() {
			$('#load').fadeOut('normal');
		}
		return false;
		
	});

});