var jsOp = 0;

function jsOpacity(jsId)
{
	if (!document.getElementById) return;
	jsRif = document.getElementById(jsId);
	if (jsOp <= 100)
	{
		jsOp += 2;

		if (document.getElementById && document.all)
			jsRif.style.filter="alpha(opacity="+jsOp+")";

		if (document.getElementById && !document.all)
			jsRif.style.MozOpacity=jsOp/100;

		void setTimeout('jsOpacity(\''+jsId+'\')', 50);
	}
}

function jsStart()
{
	jsOpacity('imgcasuale');
}
