jQuery(document).ready(function() {
	
	window.setInterval(aniTimer, 5000); // miliseconds
	
});

function aniTimer() {
	var act_show = jQuery("#actual_show").val();
	
	if (act_show == "img1") {
		jQuery("#footer .img_place").fadeOut("slow", function() {
			jQuery("#footer .img2").fadeIn("slow");
		});
		
		jQuery("#actual_show").val("img2");
	}
	else {
		jQuery("#footer .img2").fadeOut("slow", function() {
			jQuery("#footer .img_place").fadeIn("slow");
		});
		
		jQuery("#actual_show").val("img1");
	}
}