// JavaScript Document

//*****parameters to set*****
 
var def_imges=new Array ('Slides/slide_01a.jpg', 'Slides/slide_01b.jpg', 'Slides/slide_01c.jpg','Slides/slide_01d.jpg','Slides/slide_01e.jpg','Slides/slide_01f.jpg','Slides/slide_01g.jpg','Slides/slide_01h.jpg','Slides/slide_01i.jpg','Slides/slide_01j.jpg','Slides/slide_01k.jpg','Slides/slide_01l.jpg','Slides/slide_01m.jpg','Slides/slide_01n.png','Slides/slide_01o.jpg','Slides/slide_01p.jpg','Slides/slide_01q.jpg','Slides/slide_01r.jpg','Slides/slide_01s.jpg',);
    //In this array, set the pictures you want the slideshow to display.
 
var def_divid="slideshow";
    //The IDENTITY of the DIV-Containers,
    //we created to hold the slideshow
 
var def_picwid=480;
    //The width of the widest picture in pixel.
    //Notice: The script does not scale your pictures!
 
var def_pichei=400;
    //The height of the highest picture in pixel.
    //Notice: The script does not scale your pictures!
 
var def_backgr="#eeeeee";
    //The background-color of the slideshow. It is of importance
    //if you have pictures in your set, that do not fit the values
    //set above for width and height.
 
var def_sdur=3;
    //The time, a picture is shown between two transitions in seconds.
 
var def_fdur=1;
    //The time the transition should take
 
var def_steps=20;
    //The number of steps to blend from 0-100.
    //A value between 1-100, the higher the value
    // the smoother the transition.
 
var def_startwhen="y";
    //Should the slideshow start automatically?
    //"y" for Yes, "n" for No
 
var def_shuffle="y";
    //Should we start with a random picture?
    //"y" for Yes, "n" for No
 
var def_showcontr="y";
    //Should we show control-elements?
    //"y" for Yes, "n" for No
 
var def_contr=new Array('Slides/bwd.png','Slides/start.png','Slides/stop.png','Slides/fwd.png');
    //if you show control elements, you may choose between textlinks
    //and buttons. Into this array therefor insert either the text
    //you want to be displayed or the path to the image you want to
    //be used. If the script finds either .jpg or .gif or .png as the
    //ending of your input, it will display the image automatically.
    //The sort order of the elements displayed and therefor within this
    //array is: BACK - START - STOP - FWD
 
//****************************************************************
 