//padding10_left
$(function(){
     var len  = $("#picChange > img").length,index = 0,adTimer;
	 settimeout();
	 $("#picChange").hover(function(){
			                      clearInterval(adTimer);
		                      },function(){settimeout();}
	                )	                
    function settimeout()
    {
        adTimer = setInterval(function(){
			        showImg(index);
				    index++;
				    if(index==len){index=0;}
			      } , 2000);
    }
})
function showImg(index){
        $("#picChange img").hide();
        $("#picChange img:eq("+index+")").show();
}
