// picture folder 
pict_folder = "height480/";

// picture array 
var pict_names= new Array(3)
  pict_names[0]= "lucy2.jpg";
  pict_names[1]= "lucy1.jpg";
  pict_names[2]= "lucy6.jpg";
  pict_names[3]= "lucy5.jpg";
  pict_names[4]= "lucy4.jpg";	
	
var pict_captions= new Array(3)
  pict_captions[0]= "Starting her training";
  pict_captions[1]= "Having a great time chasing her pal";
  pict_captions[2]= "Lucys backyard in the snow";
  pict_captions[3]= "What's this white flower";
  pict_captions[4]= "3 month old Lucy's first snow";

// initialise the counter and set the number of pictures
var no_pics=pict_names.length;
var i = no_pics-1;


