jQuery(function($){
	var $clients = $('#clientsBox'),
	    markup   = $clients.find('p').html();

	$.each(clients_images, function(){
			markup += '<a href="' + clients_href + '">' + 
		                  '<img src="' + this.src + '" alt="' + this.alt + '" width="195" height="146" />' + 
		              '</a>';
	});

	$clients.find('p').html(markup).cycle({
		fx: 'fade',
		speed: 3500,
		random: 1
	}); /* Support for this function: http://malsup.com/jquery/cycle/ */

});
