n = 0;
function fadein()
{
	if (n > 100) return;
	n += 10;
	fin.filters['alpha'].opacity = n;
	setTimeout("fadein()",200);
}
