$(document).ready(function(){ 

var step_spot=0;

spot_timer = setInterval(function() {  

if ($("#image:animated").length === 1) {} else {
if(step_spot>=3) { step_spot=0; act_id=3; } else { act_id=step_spot; step_spot=step_spot+1;  };  
	
	var img_src = 'img/loft_gal'+step_spot+'.jpg'; 
	var bg_src = 'img/loft_gal'+act_id+'.jpg'; 
	$('#galeria').css('background-image','url('+ bg_src +')'); 	
	
	$('#image').css({'display': 'none'});
	$("#image").attr("src", ''); 
	$("#image").attr("src", img_src);
	$("#image").bind("load", function () { $('#image').fadeIn(1000);  }); 

};
}, 3000); 
});

