﻿

//*****************************************
// Blending Image Slide Show Script- 
// © Dynamic Drive (www.dynamicdrive.com)
// For full source code, visit http://www.dynamicdrive.com/
//*****************************************

//specify interval between slide (in mili seconds)
var slidespeed = 6000

//specify images
var slideimages = new Array("Images_Slide/2.jpg", "Images_Slide/3.jpg",
                            "Images_Slide/4.jpg", "Images_Slide/5.jpg", "Images_Slide/6.jpg",
                            "Images_Slide/7.jpg", "Images_Slide/8.jpg",
                            "Images_Slide/10.jpg", "Images_Slide/11.jpg", "Images_Slide/12.jpg",
                            "Images_Slide/13.jpg", "Images_Slide/14.jpg", "Images_Slide/15.jpg",
                            "Images_Slide/16.jpg", "Images_Slide/18.jpg",
                            "Images_Slide/19.jpg", "Images_Slide/20.jpg", "Images_Slide/21.jpg",
                            "Images_Slide/22.jpg", "Images_Slide/23.jpg", "Images_Slide/24.jpg",
                            "Images_Slide/26.jpg", "Images_Slide/27.jpg",
                            "Images_Slide/28.jpg")

//specify corresponding links
var slidelinks = new Array( "/current_home_promotions.htm", "/current_home_promotions.htm",
                            "/current_home_promotions.htm", "/current_home_promotions.htm", "/current_home_promotions.htm",
                            "/current_home_promotions.htm", "/current_home_promotions.htm",
                            "/current_home_promotions.htm", "/current_home_promotions.htm", "/current_home_promotions.htm",
                            "/current_home_promotions.htm", "/current_home_promotions.htm", "/current_home_promotions.htm",
                            "/current_home_promotions.htm", "/current_home_promotions.htm",
                            "/current_home_promotions.htm", "/current_home_promotions.htm", "/current_home_promotions.htm",
                            "/current_home_promotions.htm", "/current_home_promotions.htm", "/current_home_promotions.htm",
                            "/current_home_promotions.htm", "/current_home_promotions.htm",
                            "/current_home_promotions.htm")

var newwindow = 1 //open links in new window? 1=yes, 0=no

var imageholder = new Array()
var ie = document.all
for (i = 0; i < slideimages.length; i++) {
    imageholder[i] = new Image()
    imageholder[i].src = slideimages[i]
}

function gotoshow() {
    if (newwindow)
        window.open(slidelinks[whichlink])
    else
        window.location = slidelinks[whichlink]
}

//-->
