$(document).ready(function(){				
	var debugMode = getQuerystring('debug');			
	if ( debugMode == "1" )
	{		
	}
});

function loadStories(url)
{
	$('#stories').fadeOut('slow', function() {
		$.get(url, function(data) {		
			$('#stories').html($(data).find('#stories').html());
			$('#stories').fadeIn();
		});
	}
	);
}

