$(document).ready(function(){
	
	//clientes
	$('.clientes').innerfade({
		speed: 1000,
		timeout: 6000
	});
		
	//Tabs
	$(".panel:not(:first)").css('display', 'none');
	$("#content_1").css('display', 'block');
	$("a.tab").click(function () {
		$(".selected").removeClass("selected");
		$(this).addClass("selected");
		$(".panel").css('display', 'none');
		var content_show = $(this).attr("title");
		$("#"+content_show).css('display', 'block');
	});

});