function slide(){
		var obj = $("#equipe .wrapper .coluna:first");
		var temp = obj.html();
		obj.animate({width:'hide'}, 400,
			function() {
			obj.remove();
			$("#equipe .wrapper").append('<div class="coluna">' + temp + '</div>');
			}
		);
}
$(document).ready(function(){
	$("#header .wrapper").flash({src:'_swf/menu.swf', width:895, height:180, wmode:'transparent', flashvars: { aba: 'abadoma' } });

	$(window).load(function() {
		$("#clientes_slideshow .loading").remove();
		$('#clientes_slideshow').cycle({timeout:3000, speed:500, requeueOnImageNotLoaded: true,
																		before:function onBefore(curr,next,opts) {
																			var $slide = $(next);
																			var w = $slide.outerWidth();
																			var h = $slide.outerHeight();
																			$slide.css({ 	marginTop: (100 - h) / 2,	marginLeft: (405 - w) / 2	});
																		} 
		});
		
		window.setInterval("slide()", 2000);
		
		$("#equipe").hover(
								function() {
									$("#equipe .wrapper").stop();
									$("#equipe .legenda").animate({top: 80});
								},
								function() {
									$("#equipe .legenda").animate({top: 110});
								}
		);
	});



});