jQuery(document).ready(function(){
  //hide extra images
  if(jQuery('#story-images li').length > 1){
		showStory('#story_image_1');
  }
  
  //add onclick actions
  jQuery('#story-image-paging a').click(function () { 
      showStory(jQuery(this).attr('href'));
      return false;
  });
});

function showStory(story_id){
	jQuery('#story-images li').hide();
  jQuery(story_id).show();
  
  jQuery('#story-image-paging .selected_image_button').removeClass('selected_image_button');
  jQuery(story_id+'_button').addClass('selected_image_button'); 
}