/*
 * Hier stehen alle Funktionen zum Faden des Textes im Banner
 */

var oc = 0;

//starts fading in the banner text after 500 ms 
function startFade()
{
	setTimeout('fadeIn()', 500);
}


function fadeIn(	)
{
        fadeBlock.style.filter="Alpha(opacity="+oc+", finishopacity=0, style=0)";
        if(oc!=100) setTimeout('oc += 2;fadeIn()',40);
}

function fadeOut()
{
        fadeBlock.style.filter="Alpha(opacity="+oc+", finishopacity=0, style=2)";
        if(oc!=0) setTimeout('oc--;fadeOut()',40);
}

