$(document).ready(function(){
	$("#featured-client img").hide();
	$("#featured-client img:first").fadeIn();
	setInterval("play()", 5000);
});

function play(){
	var current = ($("#featured-client img.active") ? $("#featured-client img.active") : $("#featured-client img:first"));
	var next = ((current.next().length) ? ((current.next().hasClass("active")) ? $("#featured-client img:first") : current.next()) : $("#featured-client img:first"));	
	current.removeClass("active").fadeOut();
	next.hide().addClass("active").fadeIn();
};
