jQuery(document).ready(function() {
						   
	var hash = window.location.hash.substr(1);
	var href = jQuery('#menu a').each(function(){
		var href = jQuery(this).attr('href');
												
	});

	jQuery('#menu a#nav').click(function(){
								  
		var toLoad = jQuery(this).attr('href')+' .pad';
		window.location.hash = jQuery(this).attr('href').substr(0,jQuery(this).attr('href').length-26);
		jQuery('.pad').hide('slow',loadContent);
		jQuery('#load').remove();
		jQuery('#container').append('<span id="load">LOADING...</span>');
		jQuery('#load').fadeIn('slow');
		
		function loadContent() {
			jQuery('.pad').load(toLoad,'',showNewContent())
		}
		function showNewContent() {
			jQuery('.pad').show('slow',hideLoader());
		}
		function hideLoader() {
			jQuery('#load').fadeOut('slow');
		}
		return false;
		
	});

});
