 //图片滚动展示 Start
 var counts = 3;
 //大图//
 img1 = new Image();
 img1.src = 'http://www.chuangxinkeji.com/img-1/index_ad001.jpg';
 img2 = new Image();
 img2.src = 'http://www.chuangxinkeji.com/img-1/index_ad002.jpg';
 img3 = new Image();
 img3.src = 'http://www.chuangxinkeji.com/img-1/index_ad003.jpg';
 
 var smallImg = new Array();
 //小图
 smallImg[0] = 'http://www.chuangxinkeji.com/img-1/index_adb1.gif';
 smallImg[1] = 'http://www.chuangxinkeji.com/img-1/index_adb2.gif';
 smallImg[2] = 'http://www.chuangxinkeji.com/img-1/index_adb3.gif';
 
 //链接地址
 url1 = new Image();
 url1.src = 'http://www.chuangxinkeji.com';
 url2 = new Image();
 url2.src = 'http://www.chuangxinkeji.com';
 url3 = new Image();
 url3.src = 'http://www.chuangxinkeji.com';
 //alt值
 alt1 = new Image();
 alt1.alt = '发布信息网站收录数超过7000家,全球最大的互联网化的信息发布,商机发布平台!';
 alt2 = new Image();
 alt2.alt = '创新网络您身边的网络营销专家！0318-5200360';
 alt3 = new Image();
 alt3.alt = '做网络营销、网络贸易关键在于，找准目标，精确定位！';
 ////欢迎来到标准之路.
 var nn = 1;
 var key = 0;
 function change_img() {
  if (key == 0) {
   key = 1;
  } else if (document.all) {
   document.getElementById("pic").filters[0].Apply();
   document.getElementById("pic").filters[0].Play(duration = 2);
  }
  eval('document.getElementById("pic").src=img' + nn + '.src');
  eval('document.getElementById("url").href=url' + nn + '.src');
  eval('document.getElementById("pic").alt=alt' + nn + '.alt');
  if (nn == 1) {
   document.getElementById("url").target = "_blank";
   document.getElementById("url").style.cursor = "pointer";
  } else {
   document.getElementById("url").target = "_blank"
   document.getElementById("url").style.cursor = "pointer"
  }
 
  for ( var i = 1; i <= counts; i++) {
   document.getElementById("xxjdjj" + i).className = 'axx';
  }
  document.getElementById("xxjdjj" + nn).className = 'bxx';
  nn++;
  if (nn > counts) {
   nn = 1;
  }
  tt = setTimeout('change_img()', 7000);
 }
 function changeimg(n) {
  nn = n;
  window.clearInterval(tt);
  change_img();
 }
 function ImageShow() {
  document.write('<div class="picshow_main">');
  document.write('<div><a id="url"><img id="pic" class="imgbig" /></a></div>');
  document.write('<div class="picshow_change">');
  for ( var i = 0; i < counts; i++) {
   document.write('<a href="javascript:changeimg(' + (i + 1)
     + ');" id="xxjdjj' + (i + 1)
     + '" class="axx" target="_self"><img src="' + smallImg[i]
     + '"></a>');
  }
  document.write('</div></div>');
  change_img();
 }
 //图片滚动展示 End