(
function() {
  var imgs = new Array(); var imgcnt = 0; var thisimg = 0;
  imgs[imgcnt++] = 'http://www.0-6.no/storage/javarotasjonbilder/1.jpg';
  imgs[imgcnt++] = 'http://www.0-6.no/storage/javarotasjonbilder/2.jpg';
  imgs[imgcnt++] = 'http://www.0-6.no/storage/javarotasjonbilder/3.jpg';
  imgs[imgcnt++] = 'http://www.0-6.no/storage/javarotasjonbilder/4.jpg';



  function rotate() {
    if (document.images) {
      thisimg++;
      if (thisimg >= imgcnt) thisimg = 0;
      crossfade(document.getElementById('rollimg'), imgs[thisimg], '2');
    }
  }

  setInterval(rotate,5000);

}) ();

