	function showImage(theIndex){
			$("ul#image li.active").fadeOut("fast",function(){
				$(this).removeClass("active");
				$("ul#image li:nth-child(" + theIndex + ")").fadeIn("fast",function(){
						$(this).addClass("active");
				});
			});
	}
	
	function rotateThmbs(){
					var delay = "150";
					var imgCount = 2;
					$("#homeThumbs ul").each(function(i){
						var mainContainer = "#homeThumbs ul";
						var currentLi = $("li.active",this);
						var theDelay = i * delay;
						if(!currentLi.is(":first-child")){
							var nextLi = currentLi.prev();
						}else{
							var nextLi = currentLi.next();
						}
							
						setTimeout(function(){
						currentLi.fadeOut(400,function(){
							currentLi.removeClass("active");
							nextLi.fadeIn(600,function(){
								nextLi.addClass("active");
							})
						})
						},theDelay);
					});
				}
