$(function() {
	// make the "sort by" links on the adventures page ajaxy
	$('#sort-select a').live('click',function(){
		var sortBy = $(this).attr('href');
		
		// hide the stories and show the loader to show that we're doing something
		$('#story-lists').hide();
		$('.loader').show();
		
		// call the page load via ajax
		$('#story-list-wrapper').load('/adventures/'+sortBy+' #story-list-wrapper>*', function() {
			// when the ajax has returned, hide the loader and show the stories
			$('.loader').hide();
			$('#story-lists').show();
		});
		
		return false;
	});
});

