theintro = document.getElementById('intro');
theintro.style.display = 'block';
theintro.style.opacity = 0;
theintro.style.filter = 'alpha(opacity="0")';
document.getElementById('indexmain').style.display = 'none';
document.getElementById('menu').style.display = 'none';
document.getElementById('logo').style.display = 'none';

function introup(){
icounter++;
newop = icounter/100;
theintro.style.opacity = newop;
ieop = 'alpha(opacity=' + icounter + ')';
theintro.style.filter = ieop;
if(icounter<100){
t = setTimeout('introup()',50);
}
}

icounter = 0;
introup();

function endintro(){
theintro.style.display = 'none';
document.getElementById('indexmain').style.display = 'block';
document.getElementById('menu').style.display = 'block';
document.getElementById('logo').style.display = 'block';
initFade();
}