function initFade(){

counter = 0;
theimg = document.getElementById('logo');
theimg.style.opacity = 0;
theimg.style.filter = 'alpha(opacity="0")';
fadeup();
}

function fadeup(){
counter++;
newop = counter/100;
theimg.style.opacity = newop;
ieop = 'alpha(opacity=' + counter + ')';
theimg.style.filter = ieop;
if(counter<100){
t = setTimeout('fadeup()',25);
}
}

