  
//---------- ACTIONS WHEN DOCUMENT IS READY -------------------------------------
jQuery(document).ready(function() {

	
	//---------- Hide and reveal success stories ------------------------
	
	jQuery('#success-stories .thumbnail-content-holder').click(function() {
	
		var thisID = $(this).attr('id');

		// Hide the current one
		jQuery('.story-wrapper').css('display','none');
		jQuery('.thumbnail-content-holder').removeClass('selected-story');
		
		// Reveal the new one
		jQuery('.story-wrapper.'+thisID).css('display','block');
		jQuery(this).addClass('selected-story');
	
	});

}); // end jQuery(document).ready(function())
