/*******************************************************

 Finnoybu.com Preload script
 FileName: http://www.finnoybu.com/media/js/preload.js
 Copyright (c) 2007 Finnoybu.com - All rights reserved.

   Author:  Kenneth Tannenbaum
   Contact: ken.tannenbaum(@)finnoybu.com

*******************************************************/

var loaded=0;
var progress_bar;
var progress;
var timer=0;
var counter;

function delay() {
  loaded++;

  if(loaded<0) {
    loaded=0;
  }

  if(loaded>=42.3) {
    clearInterval(timer);
    loaded=42.3;
    setTimeout('clearInterval(timer)',100);
    window.status="Done";
    setLocation(getLanguage()); // loads browser language for redirect
  }

  fill(progress, 7.6*loaded);
  window.status="("+Math.round(4/(loaded/10))+" items remaining) Preloading http://www.finnoybu.com/images/...";

} // end function delay

function fill(id,r) {
  id.style.width=r+'px';
}

function timerInit() {
  progress_bar=document.getElementById('progress_bar');
  progress=document.getElementById('progress');

  fill(progress,0);
  progress_bar.style.visibility="visible";
  timer=setInterval('delay()',95);

} // end function timerInit

window.onload=timerInit;
