var t;

$(function()
{

	// slider
	var nbImg = 0;
	$('#header img').each(function()
	{
		nbImg++;
		$(this).addClass('img'+nbImg);
	});
	$('#header .img1').addClass('curimg').show();
	
	if(nbImg > 1){loopImg(1);}
	
});

function loopImg(iCount)
{
	// Function for banner
	t = setTimeout
	(
		function()
		{
			$('.img'+iCount).fadeOut(250);
			if($('.img'+(iCount+1)).html() !== null)
			{
				$('.img'+(iCount+1)).fadeIn(500);
			}
			else
			{
				$('.img1').fadeIn(500);
			}
			iCount++;
			
			if($('.img'+iCount).html() === null)
			{
				iCount = 1;
			}
			
			loopImg(iCount);
		}
		,5000	
	)
}

