

var slideImages = new Array("images/home-01.jpg","images/home-02.jpg","images/home-03.jpg");
var slideLinks = new Array("info/33-inventory.html","info/34-masterpiece.html","info/32-vpi.html");
var framerate = 30;


function SlideStart() {
	TL_timelinePlay('Timeline1');
	TL_preloadImages("'"+slideImages.join("','")+"'");
} /* SlideStart */




function TL_timelineGoto(tmLnName, fNew, numGotos) { //v2.0
  //Copyright 1997 Macromedia, Inc. All rights reserved.
  var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,lastKeyFr,propNum,theObj;
  if (document.TL_Time == null) TL_initTimelines(); //if *very* 1st time
  tmLn = document.TL_Time[tmLnName];
  if (numGotos != null)
    if (tmLn.gotoCount == null) tmLn.gotoCount = 1;
    else if (tmLn.gotoCount++ >= numGotos) {tmLn.gotoCount=0; return}
  jmpFwd = (fNew > tmLn.curFrame);
  for (i = 0; i < tmLn.length; i++) {
    sprite = (jmpFwd)? tmLn[i] : tmLn[(tmLn.length-1)-i]; //count bkwds if jumping back
    if (sprite.charAt(0) == "s") {
      numKeyFr = sprite.keyFrames.length;
      firstKeyFr = sprite.keyFrames[0];
      lastKeyFr = sprite.keyFrames[numKeyFr - 1];
      if ((jmpFwd && fNew<firstKeyFr) || (!jmpFwd && lastKeyFr<fNew)) continue; //skip if untouchd
      for (keyFrm=1; keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]; keyFrm++);
      for (j=0; j<sprite.values.length; j++) {
        props = sprite.values[j];
        if (numKeyFr == props.length) propNum = keyFrm-1 //keyframes only
        else propNum = Math.min(Math.max(0,fNew-firstKeyFr),props.length-1); //or keep in legal range
        if (sprite.obj != null) {
          if (props.prop2 == null) sprite.obj[props.prop] = props[propNum];
          else        sprite.obj[props.prop2][props.prop] = props[propNum];
      } }
    } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
  }
  tmLn.curFrame = fNew;
  if (tmLn.ID == 0) eval('TL_timelinePlay(tmLnName)');
}

function TL_timelinePlay(tmLnName, myID) { //v1.2
  //Copyright 1997 Macromedia, Inc. All rights reserved.
  var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,propNum,theObj,firstTime=false;
  if (document.TL_Time == null) { TL_initTimelines(); } //if *very* 1st time 
  tmLn = document.TL_Time[tmLnName];
  if (myID == null) { myID = ++tmLn.ID; firstTime=true;}//if new call, incr ID
  if (myID == tmLn.ID) { //if Im newest
    setTimeout('TL_timelinePlay("'+tmLnName+'",'+myID+')',tmLn.delay);
    fNew = ++tmLn.curFrame;
    for (i=0; i<tmLn.length; i++) {
      sprite = tmLn[i];
      if (sprite.charAt(0) == 's') {
        if (sprite.obj) {
          numKeyFr = sprite.keyFrames.length; firstKeyFr = sprite.keyFrames[0];
          if (fNew >= firstKeyFr && fNew <= sprite.keyFrames[numKeyFr-1]) {//in range
            keyFrm=1;
            for (j=0; j<sprite.values.length; j++) {
              props = sprite.values[j]; 
              if (numKeyFr != props.length) {
                if (props.prop2 == null) sprite.obj[props.prop] = props[fNew-firstKeyFr];
                else        sprite.obj[props.prop2][props.prop] = props[fNew-firstKeyFr];
              } else {
                while (keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]) keyFrm++;
                if (firstTime || fNew==sprite.keyFrames[keyFrm-1]) {
                  if (props.prop2 == null) sprite.obj[props.prop] = props[keyFrm-1];
                  else        sprite.obj[props.prop2][props.prop] = props[keyFrm-1];
        } } } } }
      } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
      if (fNew > tmLn.lastFrame) tmLn.ID = 0;
  } }
}

function TL_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.TL_p) d.TL_p=new Array();
    var i,j=d.TL_p.length,a=TL_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.TL_p[j]=new Image; d.TL_p[j++].src=a[i];}}
}

function TL_swapImgRestore() { //v3.0
  var i,x,a=document.TL_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function TL_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.framerate.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=TL_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function TL_swapImage() { //v3.0
  var i,j=0,x,a=TL_swapImage.arguments; document.TL_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=TL_findObj(a[i]))!=null){document.TL_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function swapLink() { //v3.0
  var i,j=0,x,a=swapLink.arguments; document.swapLink_A=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=TL_findObj(a[i]))!=null){document.swapLink_A[j++]=x; x.href=a[i+2];}
}

function TL_initTimelines() { //v4.0
	// initialise.
	link=document.getElementById('homepage_advert_link');
	if (link) {
		link.href = slideLinks[0];
	}
	document.images['homepage_advert'].src = slideImages[0];

    //TL_initTimelines() Copyright 1997 Macromedia, Inc. All rights reserved.
    var ns = navigator.appName == "Netscape";
    var ns4 = (ns && parseInt(navigator.appVersion) == 4);
    var ns5 = (ns && parseInt(navigator.appVersion) > 4);
	document.TL_Time = new Array(1);
	document.TL_Time[0] = new Array(slideImages.length);
	document.TL_Time["Timeline1"] = document.TL_Time[0];
	document.TL_Time[0].fps = 10;
	
	for( i=0; i < slideImages.length; ++i )
	{
		document.TL_Time[0][i] = new String("behavior");
		document.TL_Time[0][i].frame = i*framerate;
		document.TL_Time[0][i].value = "if(link){link.href=slideLinks["+i+"];} TL_swapImage('homepage_advert','','"+slideImages[i]+"',1);";
	}
	
	document.TL_Time[0][i] = new String("behavior");
	document.TL_Time[0][i].frame = (i*framerate)+1;
	document.TL_Time[0][i].value = "TL_timelineGoto('Timeline1','0')";
	document.TL_Time[0].lastFrame = (i*framerate)+1;
	
    for (i=0; i<document.TL_Time.length; i++) {
        document.TL_Time[i].ID = null;
        document.TL_Time[i].curFrame = 0;
        document.TL_Time[i].delay = 1000/document.TL_Time[i].fps;
    }
}
