
	var current ;
	var total ;
	function CilcleTestimonios( current , total )
	{
		for( i=0 ; i<total ; i++ )
		{
			//alert( "testimonio"+i );
			//alert( document.getElementById( "testimonio"+i ) );
			document.getElementById( "testimonio"+i ).style.display = "none" ;
		}
		document.getElementById( "testimonio"+current ).style.display = "block" ;
		current++ ;
		if ( current >= total ) current = 0 ;
		setTimeout("CilcleTestimonios("+current+","+total+")" , 10000 ) ;
	}
