//padding10_left
$(function(){
     var len  = $(".num > li").length,index = 1,adTimer;
	 settimeout();
	 $(".num li").css("cursor","pointer").mouseover(function(){
		index  =   $(".num li").index(this);
		showImg(index);
		if(index==len-1) index=0;
		else index++;
	 })	 
	 $("#picChange").hover(function(){
			                      clearInterval(adTimer);
		                      },function(){settimeout();}
	                )	                
    function settimeout()
    {
        adTimer = setInterval(function(){
			        showImg(index);
				    index++;
				    if(index==len){index=0;}
			      } , 3000);
    }
})
function showImg(index){
        $("ul.num li").css("color","#fff");
        $("ul.num li:eq("+index+")").css("color","#666464");
        $("#picChange img").fadeOut(1000);
        $("#picChange img:eq("+index+")").fadeIn(2000);
}
