// Copyright 2010 Gangster-Nations. All Rights Reserved.
// Author: Perry Szmidt.
function opacity(id, opacStart, opacEnd, millisec) {
    //speed for each frame
    var speed = Math.round(millisec / 100);
    var timer = 0;

    //determine the direction for the blending, if start and end are the same nothing happens
    if(opacStart > opacEnd) {
        for(i = opacStart; i >= opacEnd; i--) {
            setTimeout("changeOpac(" + i + ",'" + id + "')",(timer * speed));
            timer++;
        }
    } else if(opacStart < opacEnd) {
        for(i = opacStart; i <= opacEnd; i++)
            {
            setTimeout("changeOpac(" + i + ",'" + id + "')",(timer * speed));
            timer++;
        }
    }
}

//change the opacity for different browsers
function changeOpac(opacity, id) {
    var object = document.getElementById(id).style;
    object.opacity = (opacity / 100);
    object.MozOpacity = (opacity / 100);
    object.KhtmlOpacity = (opacity / 100);
    object.filter = "alpha(opacity=" + opacity + ")";
} 
function doMove() {
  gunslimit = parseInt(document.getElementById('gunsid').style.top);
  if(gunslimit >= "80"){guns.style.top = parseInt(guns.style.top)-3+'px';} else {}
  if(gunslimit <= "80"){} else {setTimeout(doMove,20);}
}
function doBody() {
  gunslimit = parseInt(document.getElementById('gunsid').style.top);
  if(gunslimit <= "80"){opacity('bodyid', 0, 100, 700);} else {setTimeout(doBody,200);}	  
}
function init() {
  document.getElementById('loadingid').style.display = "none";
  document.getElementById('preloadid').style.display = "none";
  document.getElementById('preloadid2').style.display = "none";
  document.getElementById('preloadid3').style.display = "none";
  document.getElementById('preloadid4').style.display = "none";
  document.getElementById('preloadid5').style.display = "none";
  document.getElementById('langdivid').style.display = "none";
  document.getElementById('bottommenu').style.display = "block";
  document.getElementById('gunsid').style.display = "block";
  document.getElementById('bodyid').style.display = "block";
  document.getElementById('footerid').style.display = "block";
  guns = document.getElementById('gunsid');
  guns.style.top = '200px';
  opacity('footerid', 0, 100, 700);
  setTimeout(doMove,500);
  setTimeout(doBody,1000);
  document.myform.loginname.focus();
}
function progbar() {
	proglimit = parseInt(document.getElementById('progid').style.width);
	prog = document.getElementById('progid');
  if(proglimit <= "397"){prog.style.width = parseInt(prog.style.width)+3+'px';} else {}
  if(proglimit >= "397"){setTimeout(init,10);} else {setTimeout(progbar,3);}
}
function loading() {
  document.getElementById('loadingid').style.display = "block";
  progbar();
}
window.onload = loading;
