var timeDelay = 3;
timeDelay *= 1000;
var play = true;
var link_names = new Array
        ("http://www.nicorette.se"
        ,"http://www.nestle.se"
        ,"http://www.puma.com"
        );

var Picture = new Array
        ("pics/ads/nicorette.gif"
        ,"pics/ads/nestle.jpg"
        ,"pics/ads/puma.gif"
        );

var no_of_links = link_names.length;

var no_of_picture = Picture.length;

var Current_link = 0;
var Current_pic = 0;

var Current_image = new Image();
Current_image.src = Picture[Current_pic];


function startCyler() {
        setInterval("play_slideshow()", timeDelay);
}


function cycstop() {
        play = false;
}
function cycstart() {
        play = true;
}

function play_slideshow() {
        if (play == true)
        {
                Current_pic++;
                Current_link++;
                if (Current_pic == no_of_picture && Current_link == no_of_links) {
                        Current_pic = 0;
                        Current_link = 0;
                }
                Current_image.src = Picture[Current_pic];
                document.anchors[0].href = "Javascript:open_window('" + link_names[Current_link] + "')";
                document["Destination-picture"].src = Current_image.src;
        }
}

function open_window(current_url) {
        window.open(current_url,"newWindow");
}
