function switchImg()
{
	if( $('#clients #one').hasClass('active-c') )
	{
		$('#clients #one').fadeOut(1000, function(){
			$(this).removeClass('active-c');
			$('#clients #two').fadeIn(1000).addClass('active-c');
		});
	}
	
	if( $('#clients #two').hasClass('active-c') )
	{
		$('#clients #two').fadeOut(1000, function(){
			$(this).removeClass('active-c');
			$('#clients #one').fadeIn(1000).addClass('active-c');
		});
	}
}

$(function() {
	
	$('#clients #two').hide();
	setInterval('switchImg()', 10000);
	
});
