var CURIMAGE = 0;

$(document).ready(
	function()
	{
		if ($.browser.version.charAt(0) < 7 && $.browser.msie){$("#mainnav li, #subnav li").hover(function(){$(this).addClass('hover');},function(){$(this).removeClass('hover');});}
		if ($("body").attr("id") == 'home')
		{
			setTimeout("bindHome()", 5000);
		}
	}
);

function bindHome()
{
	$("#header-image .home"+CURIMAGE).css('z-index', 10).fadeOut(2000);
	CURIMAGE++;
	if (CURIMAGE > 2)
	{
		CURIMAGE = 0;
	}
	$("#header-image .home"+CURIMAGE).css('z-index', 20).fadeIn(3000);

	setTimeout("bindHome()", 6000);
}


