var CURIMAGE = 0;

$(document).ready(
	function()
	{
		if ($("body").attr("id") == 'home')
		{
			setTimeout("bindHome()", 6000);
		}
	}
);

function bindHome()
{
	$("#foto-header .home"+CURIMAGE).css('z-index', 10).fadeOut(3000);
	CURIMAGE++;
	if (CURIMAGE > 2)
	{
		CURIMAGE = 0;
	}
	$("#foto-header .home"+CURIMAGE).css('z-index', 20).fadeIn(4000);

	setTimeout("bindHome()", 6000);
}


