/**
 * 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('img/slider001.jpg','img/slider006.jpg','img/slider003.jpg','img/slider004.jpg' ,'img/slider005.jpg' , 'img/slider006.jpg' , 'img/slider007.jpg' , 'img/slider008.jpg');

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

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

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

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

//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;