// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.

// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 4500;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 3;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this

// Specify the image files...
// To add more images, just continue
// the pattern, adding to the array below.
// To use fewer images, remove lines
// starting at the end of the Picture array.
// Caution: The number of Pictures *must*
// equal the number of Captions!

Picture[01]  = 'bilder/bildspel/jarnhandel.jpg';
Picture[02]  = 'bilder/bildspel/tradgard.jpg';
Picture[03]  = 'bilder/bildspel/hushall.jpg';
Picture[04]  = 'bilder/bildspel/cafe.jpg';
Picture[05]  = 'bilder/bildspel/klader.jpg';
Picture[06]  = 'bilder/bildspel/golf.jpg';
Picture[07]  = 'bilder/bildspel/jakt.jpg';
Picture[08]  = 'bilder/bildspel/fiske.jpg';
Picture[09]  = 'bilder/bildspel/farg.jpg';
Picture[10]  = 'bilder/bildspel/bygglager.jpg';
Picture[11]  = 'bilder/bildspel/vitvaror.jpg';
Picture[12]  = 'bilder/bildspel/kok.jpg';
Picture[13]  = 'bilder/bildspel/marin.jpg';

// Specify the Captions...
// To add more captions, just continue
// the pattern, adding to the array below.
// To use fewer captions, remove lines
// starting at the end of the Caption array.
// Caution: The number of Captions *must*
// equal the number of Pictures!

Caption[01]  = "<a class='Caption' href='/jarnhandel'>Verktyg för hemmafixare och proffs!</a>";
Caption[02]  = "<a class='Caption' href='/tradgard'>Allt för trädgården - året om!</a>";
Caption[03]  = "<a class='Caption' href='/present'>Det mesta för köket och hemmet!</a>";
Caption[04]  = "<a class='Caption' href='/cafefritz'>Kaffe och macka i avslappnad miljö.</a>";
Caption[05]  = "<a class='Caption' href='/klader'>Allt inom arbetskläder, skor <br>och personligt skydd.</a>";
Caption[06]  = "<a class='Caption' href='/golf'>Putt? Gör ett besök på Golfavdelningen.</a>";
Caption[07]  = "<a class='Caption' href='/jakt'>Allt för den jaktintresserade!</a>";
Caption[08]  = "<a class='Caption' href='/fiske'>Full rulle på vår välsorterade fiskeavdelning.</a>";
Caption[09]  = "<a class='Caption' href='/interior'>Sätt färg på tillvaron och huset!</a>";
Caption[10]  = "<a class='Caption' href='/bygg'>Besök vårt välsorterade bygglager.</a>";
Caption[11]  = "<a class='Caption' href='/vitvaror'>Som Hemmabutik ger vi dig ett <br> brett urval av vitvaror.</a>";
Caption[12]  = "<a class='Caption' href='/kok'>Låt dig inspireras i våra kök- <br> och badrumsmiljöer.</a>";
Caption[13]  = "<a class='Caption' href='/marin'>Sugen på ny båt? Skene Järn har det mesta!</a>";

// =====================================
// Do not edit anything below this line!
// =====================================

var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function runSlideShow(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}
