/* Skull and Sword Theme */

/* support custom ajax post loader */
jQuery(document).ready(function(){

	jQuery('.entry-nav a').live('click', function(e){
		e.preventDefault();
		var link = jQuery(this).attr('href');
		
		//jQuery('#articles').html('Loading...'); /* replace with spinner/throbber */
		jQuery('#articles').fadeTo(500,0).load(link + ' #articles', function(){ jQuery('#articles').fadeTo(500,1); });
		//jQuery('#articles-wrapper').load(link + ' #articles', function(){ alert( 'Load complete' +  ); });

	});

});
