
 
 /*@@@@@@@@@@@@@@@@@@@@@ Preloader @@@@@@@@@@@@@@@@@@@@@*/


var x;
function preload()
{
  p = new Array();
  x = 0;

  for(i=0;i<progress.length;i++) {
    p[i] = new Image();
    p[i].onabort = update;
    p[i].onerror = update;
    p[i].onload = update;
    p[i].src = progress[i];
  }
}

function update()
{
  x++;
  pro = Math.round((x/progress.length)*100);
  document.getElementById('totPc').style.width = pro+"%";
  document.getElementById('totText').innerHTML = pro+"%";
  if (pro >= 99) location.href = "preloadedindex.php";
}