// JavaScript Document          
           first = 1;
           last = 10;
		     current = 1;
           
           function nextStory() {
               // Hide current picture
               object = document.getElementById('slide' + current);
               object.style.display = 'none';
               
               // Show next picture, if last, loop back to front
               if (current == last) { current = 1; }
               else { current++ }
//				   alert(current);

               object = document.getElementById('slide' + current);
               object.style.display = 'block';
					setTimeout(nextStory, 7000);
           }
			  
			  function moreStory() {
               // Hide current picture
               object = document.getElementById('slide' + current);
               object.style.display = 'none';
               
               // Show next picture, if last, loop back to front
               if (current == last) { current = 1; }
               else { current++ }

               object = document.getElementById('slide' + current);
               object.style.display = 'block';
           }

           function previousStory() {
               // Hide current picture
               object = document.getElementById('slide' + current);
               object.style.display = 'none';
               
               if (current == first) { current = last; }
               else { current--; }
               object = document.getElementById('slide' + current);
               object.style.display = 'block';

           }
			  
           
