var CURIMAGE = 0;

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

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

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

