$(window).load(function(){
	var timer = setInterval(changeBg, time);
	var image = 0;
	function changeBg()
	{
		image += 1;
		if (image > 10)
			image = 0;
		$('#slideshow').fadeOut('slow', function(){
			/*if (image == '3' || image=='4' || image==4 || image==3 || image == 7 || image=='7' || image == 2 || image=='2')*/
			if (image == 2 || image == 4)
			{
				$('#client a').each(function(){
					$(this).addClass('darkbg');
				});
			}
			/*else if (image == 2 || image=='2')
			{
				$('#client a:last').addClass('darkbg');
			}*/
			else
			{
				$('#client a').each(function(){
					$(this).removeClass('darkbg');
				});
			}
			$(this).css('background-image', 'url('+webroot+'img/banners/'+image+'.jpg)');
			$(this).fadeIn('slow');
		});
	}
});

