$(document).ready(
	function(){		
		var t = "";
		
		function hideAll(){				
			$("#homespecials1").hide();
			$("#homespecials2").hide();
			return false;
		}
		
		startLoop = function(count){
			count++;
			var image_to_show = count%3;
			if(image_to_show>0){
				hideAll();
				function_name = "#homespecials"+image_to_show;
				eval($(function_name).fadeIn("slow"));				
			}
			t = setTimeout("startLoop("+count+")",4000);
		}
		
		startLoop(0);
	}
);