function PreloadImages() { 
  var args = PreloadImages.arguments;
  document.imageArray = new Array(args.length);
  for(var i=0; i<args.length; i++)
  {
    document.imageArray[i] = new Image;
    document.imageArray[i].src = PreloadImagesPath+args[i];	
  }
}

function swap (n) { 

  thepic = ''+document.images[n].src; 
  thepic = thepic.substring(0, thepic.length - 4) + 'hi.gif';
  document.images[n].src = thepic;
 // alert (orign);
}

function swapback (n) { 
  thepic = ''+document.images[n].src; 
  thepic = thepic.substring(0, thepic.length - 6) + '.gif';
  document.images[n].src = thepic;
 // alert (thepic);
}


function mailzeigen() {
var domain = "winterberger-hof.de";
var name = "info";
var ausgabe = name + '@' + domain
document.write('e-mail: <a href="mailto:' + name + '@' + domain + '">' + ausgabe + '</a>');
}
