// JavaScript Document

<!-- //
/*================================

Image Cross Fade Redux
Version 1.0
Last revision: 02.15.2006
steve@slayeroffice.com
http://slayeroffice.com

==================================

- Modifications By www.dhcreationstation.com
04.30.2008 version: 2.5.3
[Desc]   Transition time delay and individual linking abiltities.

[Added]  Variables: pause        = 5000; // delay before next transition begins
                    fadeInterval = 100;  // speed of transition

05.10.2008 version: 2.5.7
[Added]  MultiLinking Abilities to function call.

         Default: Pull gallery Images No Linking.
                  var gallery=new XFadeGallery('MyGallery')

       Setting 1: Pull gallery Images, Link Individual Images. Links are defined in
                  image array. If link not available returns void.
                  var gallery=new XFadeGallery('MyGallery',1)

       Setting 2: Pull gallery Images, Link Image Group. Link is defined by Arg[2].
                  By default, if group link is not defined it defaults to
                              www.dhcreationstation.com
                  var gallery=new XFadeGallery('MyGallery',2,'newImagepage.html')

================================*/



//===== Adjustable Globals =====//
var pause        = 5000;
var fadeInterval = 100;



//===== Gallery Arrays Begin =====//
var MyGallery = new Array();
MyGallery[1] = 'images/image-01.jpg';
MyGallery[2] = 'images/image-02.jpg';
MyGallery[3] = 'images/image-03.jpg';
MyGallery[4] = 'images/image-04.jpg';
MyGallery[5] = 'images/image-05.jpg';
MyGallery[6] = 'images/image-07.jpg';


var MyGallery2 = new Array();
MyGallery2[1] = 'web/images/bannerR1.jpg|';
MyGallery2[2] = 'web/images/bannerR2.jpg';
MyGallery2[3] = 'web/images/bannerR3.jpg|';
MyGallery2[4] = 'web/images/bannerR4.jpg';



var MyGallery3 = new Array();
MyGallery3[1] = 'images/image-01.jpg';
MyGallery3[2] = 'images/image-02.jpg';
MyGallery3[3] = 'images/image-03.jpg';
MyGallery3[4] = 'images/image-04.jpg';
MyGallery3[5] = 'images/image-05.jpg';
MyGallery3[6] = 'images/image-06.jpg';
MyGallery3[7] = 'images/image-07.jpg';
MyGallery3[8] = 'images/image-08.jpg';
MyGallery3[9] = 'images/image-09.jpg';
MyGallery3[10] = 'images/image-10.jpg';
//===== Gallery Arrays End =====//

// -->