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

	$('#port-nav-1 li a,#port-nav-2 li a,#port-nav-2-more li a,#port-nav-1-more li a,#maps a').click(function(){
								  
		var hash = $(this).attr('href');
		hash = hash.replace(/^.*#/, '');
		//hash = hash.substr(18,hash.length-5);

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

});