(function(){	
	function slideShow(){
		$("#slideimg")
			.animate("opacity:0;speed:500",function(){
				var obj =this;
				this.c = this.c === undefined ? 1 : ((this.c + 1) % arrayImg.length);
				this.src = arrayImg[this.c][0];
				$("#slide_title,#slide_desc").animate("opacity:0;speed:300",function(){
					$(".caption").hide("speed:300-height",function(){					
						$(obj).animate("opacity:1;speed:300",function(){
							var i = this.c;
							$("#slide_title").htm(arrayImg[i][1]);
							$("#slide_desc").htm(arrayImg[i][2]);
							$(".caption").show("speed:300-height",function(){
								$("#slide_title,#slide_desc").animate("opacity:1;speed:300");
							});
						setTimeout(slideShow,10000);
						})
					});	
				});	
			})
	}
setTimeout(slideShow,3000);

})();

