$(document).ready(function(){            
	
	var tiempo_fade = 1000;  
	var tiempo_entre_img = 3000;  
  
	function animacion_simple() {  
  		$("#header_img1").css("background-image","url(img/head/img_header1.jpg)");
		$("#header_img1").fadeIn(tiempo_fade*2);
		
		setTimeout(function() {  
			$("#header_img1").fadeOut(tiempo_fade);
			$("#header_img2").css("background-image","url(img/head/img_header3.jpg)");
			$("#header_img2").fadeIn(tiempo_fade*2);
		}, tiempo_entre_img); 
		
		setTimeout(function() {  
			$("#header_img2").fadeOut(tiempo_fade);
			$("#header_img1").css("background-image","url(img/head/img_header2.jpg)");
			$("#header_img1").fadeIn(tiempo_fade*2);
		}, tiempo_entre_img*2); 
		
		setTimeout(function() {  
			$("#header_img1").fadeOut(tiempo_fade);
			$("#header_img2").css("background-image","url(img/head/img_header4.jpg)");
			$("#header_img2").fadeIn(tiempo_fade*2);
		}, tiempo_entre_img*3); 
		
  		setTimeout(function() {
			$("#header_img2").fadeOut(tiempo_fade);	
			animacion_simple();					
		},tiempo_entre_img*4);
	}    
	
	setTimeout(function() {  
		animacion_simple();  
	},200);  
  
});  
