		var textos=new Array();
		//var textos=new Array("Juego muy completo y divertido - Ingeneria Multimedia La Salle","Se presenta con muy buena pinta - juegosdeliphone.com","Cumple con todas la expectativas - marcmantra.blogspot.com");
		
		var testimonials_id=0;
		var testimonials_nid=1;
		var idInterval;
		
		function testimonialSlide(){
			
			clearInterval(idInterval);
			  
			  
			  $("#testimonials p.first").animate({"right": "+=600px"}, 2000);
			  $("#testimonials p.second").animate({"right": "+=600px"}, 2000,function(){
			  		
			  		$("#testimonials p.first").animate({"right": "-=600px"}, 0); 
			  		$(this).animate({"right": "-=600px"}, 0,function(){
			  				
									  				
				  		testimonials_id++;
				  		testimonials_id=testimonials_id%textos.length;
				  		
				  		testimonials_nid=testimonials_id+1;
				  		testimonials_nid=testimonials_nid%textos.length;
				  		
				  		
				  		$("#testimonials p.first").text(textos[testimonials_id]);
						$("#testimonials p.second").text(textos[testimonials_nid]);
			  			
			  		});
			  		
			  		idInterval=setInterval("testimonialSlide()",5000);		
			  });
		}
		
		$(document).ready(function() {
			
			//Get info
			var i=0;
			$("#testimonialsInfo p").each(function(){
				textos[i]=$(this).html();
				i++;
			});
				
			 //Reset de elementos	
			  var topOffset=0;
			  var rightOffset=0;
			  $("#testimonials p").each(function(){
			  		$(this).animate({"top": "-="+topOffset+"px","right": "-="+rightOffset+"px"}, 0);
			  		topOffset+=40;
			  		rightOffset+=600;
			  });
			  
			  //Inicio animacion
			  
			  
			  $("#testimonials p.first").text(textos[testimonials_id]); 
			  $("#testimonials p.second").text(textos[testimonials_nid]);  
			  
			  if($.browser.msie){
			  		
			  		var numtextos=textos.length;
			  		var textId=Math.floor(Math.random()*numtextos);
			  		
			  		$("#testimonials p.first").html(textos[textId]);
			  		$("#testimonials p.first").show();
			  		$("#testimonials p.second").hide();
			  }
			  else
			  {
			  	testimonialSlide();
			  }
			  
			  
		});