////////////////////////////////////////////////////////////////
// Javascript made by Rasmus - http://www.peters1.dk //
////////////////////////////////////////////////////////////////

var SLIDE_sti = 'http://www.tjelle-byg.dk/UserFiles/front/'; // Adresse til mappen, hvor billederne er placeret

// Ingen ændringer herunder...

var SLIDE_billede = new Array();
var SLIDE_load = new Array();
var SLIDE_status, SLIDE_timeout;
var SLIDE_aktuel = 1;
var SLIDE_speed = 3000;
var SLIDE_fade = 2;
var SLIDE_antal = 3;

function SLIDE_init(antal)
{
SLIDE_antal = antal;
for (i = 1; i <= SLIDE_antal; i++)
{
  SLIDE_billede[i] = SLIDE_sti+'forside'+i+'_small.jpg';
  SLIDE_load[i] = new Image();
  SLIDE_load[i].src = SLIDE_billede[i];
}
}

function SLIDE_start()
{
  document.images.SLIDE_billedeBox.src = SLIDE_load[SLIDE_aktuel].src;
  SLIDE_aktuel++;
  SLIDE_slide();
  SLIDE_timeout = setTimeout("SLIDE_start()",SLIDE_speed);
}


function SLIDE_slide()
{
  if (SLIDE_aktuel > (SLIDE_antal)) SLIDE_aktuel=1;
  if (SLIDE_aktuel < 1) SLIDE_aktuel = SLIDE_antal;
  if (document.all)
  {
    document.images.SLIDE_billedeBox.style.filter="blendTrans(duration=2)";
    document.images.SLIDE_billedeBox.style.filter="blendTrans(duration=SLIDE_fade)";
    document.images.SLIDE_billedeBox.filters.blendTrans.Apply();
  }
  document.images.SLIDE_billedeBox.src = SLIDE_load[SLIDE_aktuel].src;
  if (document.all) document.images.SLIDE_billedeBox.filters.blendTrans.Play();
}

