// JavaScript Document
$(document).ready(function(){  
  
    var tiempo_inicio_anim = 200;  
    var tiempo_entre_img = 5000;  
    var tiempo_fade = 1500;    
    function animacion_simple() 
	{  
        $(".frame1").fadeIn(tiempo_fade);   
        setTimeout(function() 
		{  
            $(".frame1").fadeOut(tiempo_fade);  
            $(".frame2").fadeIn(tiempo_fade);  
        }, tiempo_entre_img);  
  
        setTimeout(function() 
		{               
            $(".frame2").fadeOut(tiempo_fade);              
            $(".frame3").fadeIn(tiempo_fade);  
        }, tiempo_entre_img*2);  
  
        setTimeout(function() 
		{              
            $(".frame3").fadeOut(tiempo_fade);              
            animacion_simple();  
        }, tiempo_entre_img*3);  
  
    }    
    setTimeout(function() 
	{  
        animacion_simple();  
    }, tiempo_inicio_anim);  
  
});   	

