// JavaScript Document
jQuery(document).ready(function() {
	//inital settings
	$("#fullStory_01").hide();
	$("#fullStory_02").hide();
	$("#fullStory_03").hide();
	//open full story-----------------------------
	$("#more_01").click(function() {
		$("#blurb_01").hide();						 
		$("#fullStory_01").show();
		//
		$("#blurb_02").show();	
		$("#blurb_03").show();	
		$("#fullStory_02").hide();
		$("#fullStory_03").hide();
		
   	});
	
	$("#more_02").click(function() {
		 $("#blurb_02").hide();			
		$("#fullStory_02").show();
		//
		$("#blurb_01").show();	
		$("#blurb_03").show();	
		$("#fullStory_01").hide();
		$("#fullStory_03").hide();

   	});
	
	$("#more_03").click(function() {
	    $("#blurb_03").hide();			
		$("#fullStory_03").show();
		//
		$("#blurb_02").show();	
		$("#blurb_01").show();	
		$("#fullStory_02").hide();
		$("#fullStory_01").hide();
   	});
	//close full story-----------------------------
	$("#less_01").click(function() {
	    $("#blurb_01").show();			
		$("#fullStory_01").hide();
   	});
	
	$("#less_02").click(function() { 
		$("#blurb_02").show();		
		$("#fullStory_02").hide();

   	});
	
	$("#less_03").click(function() {
		$("#blurb_03").show();		
		$("#fullStory_03").hide();
   	});
//end script
});