$(document).ready(
	function(){		
		var t = "";
		
		function hideAll(){				
			$("#homecontent1").hide();
			$("#homecontent2").hide();
			$("#homecontent3").hide();
			$("#homecontent4").hide();
			$("#homecontent5").hide();
			$("#homecontent6").hide();
			$("#homecontent7").hide();
			$("#homecontent8").hide();
			$("#homecontent9").hide();
			$("#homecontent10").hide();
			$("#homecontent11").hide();
			$("#homecontent12").hide();
			$("#homecontent13").hide();
			$("#homecontent14").hide();	
			$("#homecontent15").hide();	
			
			return false;
		}
		
		startLoop = function(count){
			count++;
			var image_to_show = count%16; // 1 more than number of slides
			if(image_to_show>0){
				hideAll();
				function_name = "#homecontent"+image_to_show;
				eval($(function_name).fadeIn("slow"));				
			}
			t = setTimeout("startLoop("+count+")",6000);
		}
		
		startLoop(0);
	}
);