function chimg()
{
   if (document.getElementById('header'))
   {
      cur=cur+1;
      if(cur>=bgimg.length) cur=0;
      document.getElementById('header').style.backgroundImage = "url(" + bgimg[cur] + ")";
   }

}

