// JavaScript Document
$(document).ready(function()
{	
	var _i = setInterval(function()
	{
		var _div = $('#clients div:visible:first');
		if (_div.length == 1)
		{
		   _div.slideUp('slow',function()
         {
           var _next = $(this).next();
           if(_next.attr('id') == 'clients_end')
           {
            $('#clients div:first').slideDown('slow');
           }
           else
           {
             _next.slideDown('slow');
           }
         });
		}
	},24000);
});


