// JavaScript Document

$(document).ready(
	function(){	

		function hideAll(){				
			$("#ast1").hide();
			$("#ast2").hide();
			$("#ast3").hide();
			$("#ast4").hide();
			$("#ast5").hide();
			$("#ast6").hide();
			$("#ast7").hide();
			return false;
		}


		startLoop = function(count){
			count++;
			var image_to_show = count%7;
			if(image_to_show>0){
				hideAll();
				function_name = "#ast"+image_to_show;
				eval($(function_name).fadeIn("slow"));				
			}
			t = setTimeout("startLoop("+count+")",6000);
		}
		
		
		startLoopa(0);
	}
);