// ----==== ROLLOVER-TEXTE FUER POSTKARTENAUSWAHL ====----
//
// (c) Copyright 2001 by Wolfgang Dick, www.drachenstein.ch
// ********************************************************
// I'm happy if this script is of help for you, but I would
// be happy to know where it's used. So please drop me a line
// to wolfgang.dick@drachenstein.ch
// Please don't remove this copyright remark, thank you.
// Enjoy!

var Text0  = '<font class="dalmibegin">C</font><font class="dalminorm">hoose another postcard area:';
var Text1  = '<font class="dalmibegin">D</font><font class="dalminorm">almatians and other cards - Part I';
var Text2  = '<font class="dalmibegin">D</font><font class="dalminorm">almatians and other cards - Part II';
var Text3  = '<font class="dalmibegin">G</font><font class="dalminorm">reat Dalmatian postcards - Part I';
var Text4  = '<font class="dalmibegin">G</font><font class="dalminorm">reat Dalmatian postcards - Part II';
var Text5  = '<font class="dalmibegin">A</font><font class="dalminorm">nimal fun cards - Part I';
var Text6  = '<font class="dalmibegin">A</font><font class="dalminorm">nimal fun cards - Part II';
var Text7  = '<font class="dalmibegin">T</font><font class="dalminorm">he Dalmatians of Karola';
var Text8  = '<font class="dalmibegin">D</font><font class="dalminorm">almatian artwork';
var Text9  = '<font class="dalmibegin">W</font><font class="dalminorm">olfs moon';
var Text10 = '<font class="dalmibegin">W</font><font class="dalminorm">estern spirit with horses';
var Text11 = '<font class="dalmibegin">A</font><font class="dalminorm">nimals - Friends';
var Text12 = '<font class="dalmibegin">A</font><font class="dalminorm">nimals - Cool animals';
var Text13 = '<font class="dalmibegin">M</font><font class="dalminorm">ore funny postcards';
var Text14 = '<font class="dalmibegin">O</font><font class="dalminorm">ther dog and cat fun';
var Anzahl = 14;  // die Anzahl der Einträge
var Counter = 0;

while (Counter<=Anzahl){
	document.write("<div id=\"T"+Counter+"\" style=\"position:absolute;visibility:hidden\">"+eval("Text"+Counter)+"</div>");
	Counter=Counter+1;
}
