

/*   Bidirectional Horizontal Scrolling Images with Optional Caption */
/*   Copyright 2010, Michael J. Hill.  All rights reserved. Used with permission.  www.javascript-demos.com */
/*   Free use of the code, so long as the above notice is kept intact */

/*	The image names can be any valid HTML name, they do not have to  */
/*   	be consecutively numbered, the way the example images are.       */

	var useCaptions = false;          // or true;

	var imgPath = "./bidirectional_image_scroller/images/";

/*	Whether or not you use captions, do not delete the vertical bar | */

	var imgSet = [];  // image file names and captions; 
	imgSet[imgSet.length] = "butterfly1.gif | Black with White Stripes";
	imgSet[imgSet.length] = "butterfly2.gif | Orange";
	imgSet[imgSet.length] = "butterfly3.gif | Black with White Dots";
	imgSet[imgSet.length] = "butterfly4.gif | Brown and Orange";
	
