// remap jQuery to $
(function($){})(window.jQuery);


/* trigger when page is ready */
$(document).ready(function (){

	initialize();

});

function initialize() {
	//Click on nav to load external content through AJAX
	$('#topnav a, #bottomnav a').not('#topnav #audio a, #fbcallus a, #fbmap a, #fbaboutus a').click(function(e){
		e.preventDefault();
		$('<div></div>').attr('id', 'spinner').appendTo('#pages'); //spinner
		$('#pages').load( e.target.href + ' #loadcontent', function() { //stop spinner
			fadespinner();
		}); //pages finished loading
	}); //clicked on nav
	
	
}

//fade spinner graphic
function fadespinner() {
	$('#spinner').fadeOut('slow', function() { //stop spinner
		$(this).remove();
	}); //remove spinner
}

