/**
 * ir_config.js
 * Configuration options for the ImageRotation class (make sure to include this after ir.js)
 * @requires ir.js
 * @author John Bell
 * @version 1.0
 */

//Config options
//Array of paths to the images in this rotation
ImageRotation.srcs = new Array('images/rotate1.jpg','images/rotate2.jpg','images/rotate3.jpg','images/rotate4.jpg');


//Transition effect to use.  Can be 'exchange', 'slide', 'hide', 'reveal', or 'swap'
ImageRotation.effect = 'reveal';

//ID of the image tag the rotation will replace
ImageRotation.imageTagID = 'ir_default';

//Amount of time to show each image (in seconds)
ImageRotation.delay = 8;

//Amount of time it takes to run the transition between images (in seconds)
ImageRotation.speed = 1;

//Show links that allow the user to manually transition
ImageRotation.showLinks = true;

//CSS class of the manual transition links (if they are on)
ImageRotation.linkClass = 'irLink';

//Spacing options for the manual links (if they are on)
ImageRotation.linkBottomOffset = 5;
ImageRotation.linkRightOffset = 5;
ImageRotation.linkSpacing = 20;

//Send init errors to the firebug console
ImageRotation.debug = false;