$(function(){
				 var len = $("#idNum > li").length;
			var index = 0;
			$("#idNum li").mouseover(function(){
			   index =   $("#idNum li").index(this);
			   showImg(index);			   
			   $("#pictext").html($("#idSlider a").eq(index).find("img").attr('alt'));
			    index++;
			   if(index==len){index=0;}
			}); 
			$('#idTransformView').hover(function(){
				 if(MyTime){
				 clearInterval(MyTime);
				 }
			},function(){
				 MyTime = setInterval(function(){
				   showImg(index)				
				 $("#pictext").html($("#idSlider a").eq(index).find("img").attr('alt'));
				 $("#pictext").unbind().click(function(){window.open($("#idSlider a").eq(index).attr('href'), "_blank")})
				  index++;
				 if(index==len){index=0;}
				 } , 3000);
			});
			var MyTime = setInterval(function(){
			   showImg(index)			  
			   $("#pictext").html($("#idSlider a").eq(index).find("img").attr('alt'));
			    $("#pictext").unbind().click(function(){window.open($("#idSlider a").eq(index).attr('href'), "_blank")})
				 index++;
				if(index==len){index=0;}
			} , 3000);
			})
			function showImg(i){
				if (window.ActiveXObject){
					var ua = navigator.userAgent.toLowerCase();
				    var iecode = ua.match(/msie ([\d.]+)/)[1];
					if(iecode == '7.0'){
						$("#idSlider").stop(true,false).animate({top : -276*i},100);
					}else if(iecode == '6.0'){
						$("#idSlider").stop(true,false).animate({top : -290*i},100);
					}else{
						$("#idSlider").stop(true,false).animate({top : -260*i},100);
					}
				}else{
				 	$("#idSlider").stop(true,false).animate({top : -260*i},10);
				}
			 
			   $("#idNum li")
				.eq(i).addClass("on")
				.siblings().removeClass("on");
			}
			
			
