	//幻灯?
	$(function() {
		showImg(1);
		var len = $("#idNum > li").length;
		var index = 0;
		$("#idNum li").mouseover(function(){
			index = $("#idNum li").index(this);
			showImg(index);
		});
		//滑入 停止动画，滑出开始动?.
		$('#idTransformView').hover(function(){
			if(MyTime){
				clearInterval(MyTime);
			}
		},function() {
			MyTime = setInterval(function(){
				showImg(index)
				index++;
				if(index==len){index=0;}
			} , 5000);
		});
		//自动??
		var MyTime = setInterval(function(){
			showImg(index)
			index++;
			if(index==len){index=0;}
		} , 5000);
	})


//幻灯?
function showImg(i){
	/*
	$("#idSlider").stop(true,false).animate({top : -442*i},800);
	*/
	$("#idTransformView>div").fadeOut("slow");
	$('#idTransformView>div:eq('+i+')').fadeIn("slow");
	$("#idNum li")
	.eq(i).addClass("on")
	.siblings().removeClass("on");
	
	
	//alert($('#idSlider').find("li").html())
}
