var myimages=new Array();
 function bilderliste(Args)
 {
 for (i=0;i<bilderliste.arguments.length;i++)
 {
 myimages[i]=new Image()
 myimages[i].src=bilderliste.arguments[i]
 }
 }
  
 // Pfad und Name der Images innerhalb von Anführungszeichen eintragen.
 // Liste nach Bedarf erweitern.
 function preloadimages(){
  
 bilderliste("user/templates/img/start_a.png",
			 "user/templates/img/start_b.png",
			 "user/templates/img/essen_a.png",
			 "user/templates/img/essen_b.png",
			 "user/templates/img/trinken_a.png",
			 "user/templates/img/trinken_b.png",
			 "user/templates/img/waschen_a.png",
			 "user/templates/img/waschen_b.png",
			 "user/templates/img/anleitung_a.png",
			 "user/templates/img/anleitung_b.png",
			 "user/templates/img/preisliste_a.png",
			 "user/templates/img/preisliste_b.png",
			 "user/templates/img/agb_a.png",
			 "user/templates/img/agb_b.png",
			 "user/templates/img/galerie_a.png",
			 "user/templates/img/galerie_b.png",
			 "user/templates/img/gaestebuch_a.png",
			 "user/templates/img/gaestebuch_b.png",
			 "user/templates/img/kontakt_a.png",
			 "user/templates/img/kontakt_b.png",
			 "user/templates/img/impressum_a.png",
			 "user/templates/img/impressum_b.png",
			 "user/templates/img/hund.png",
			 "user/templates/img/muster.png",
			 "user/templates/img/bg_top.jpg",
			 "user/templates/img/bg_bottom.jpg",
			 "user/templates/img/muster-waschen.png",
			 "user/templates/img/bg_top-waschen.jpg",
			 "user/templates/img/monat.psd",
			 "user/templates/img/muster-waschen.png");
 } 
