var col=9;
var speed=90;

function fadeIn() 
{
	if( document.getElementById )
	{
		document.getElementById('FadedContent').style.visibility='hidden';
		window.status = col.toString();
		if( col == 0 )
		{
			document.getElementById('FadedContent').style.visibility='visible';
		}
		//document.getElementById('FadedContent').style.color='rgb('+col+','+col+','+col+')';
		if(col>0) 
		{
			col--;
			setTimeout('fadeIn()',speed);
		}
	}
}

function hideContainer( id )
{
	if( document.getElementById )
	{
		document.getElementById( id ).style.visibility='hidden';
	}
}