// tt_data_d.js DEUTSCH

// Welcome to Tipster! Before you start, make sure you've read and agree to the
// "Conditions of Use" in the HTML document below.

// 1 Luzern
// ==========
var staticTip1 = new TipObj('staticTip1');
with (staticTip1)
{
 template = '<table class="tab1" cellpadding="3" cellspacing="0" width="%2%" >' +
  '<tr><td class="tipClass1" align="left" height="*" >%4%</td></tr>' +
  '</table>';

 // HIERARCHIAL TIPS: To call one tip object from within another tip object, make sure you
 // pass the a reference to the current object as the second parameter to the show() function.
 tips.luzern = new Array(0,10,400, 'luzern',
  '<p class="tt">Stadtführungen</p>' +
  '<p class="tt">Themenführungen</p>' +
  '<p class="tt">&nbsp;&nbsp;Brunnen als Lebensquelle und Zierobjekt</p>' +
  '<p class="tt">&nbsp;&nbsp;Kunst und Architektur vom Mittelalter bis in die Neuzeit</p>' +
  '<p class="tt">&nbsp;&nbsp;Das breite Volk und die Feste im Jahreslauf</p>' +
  '<p class="tt">&nbsp;&nbsp;Persönlichkeiten vom Mittelalter bis zur Gegenwart</p>' +
  '<p class="tt">&nbsp;&nbsp;Justiz im Mittelalter: Räuber, Mörder, Richter und Henker</p>' +
  '<p class="tt">&nbsp;&nbsp;Kirchen und Klöster</p>' +
  '<p class="tt">Museen</p>');
 
  tips.zentralschweiz = new Array(0,10,150, 'zentralschweiz',
  '<p class="tt">Rundreisen (Tagesausflüge)</p>' +
  '<p class="tt">Rundreisen (Halbtagesausflüge)</p>');
  
  tips.schweiz = new Array(0,10,150, 'schweiz',
  '<p class="tt">Tagesausflüge</p>' +
  '<p class="tt">Mehrtagestouren</p>');
	
  tips.europa = new Array(0,10,150, 'europa',
  '<p class="tt">Gästebetreuung</p>');
	
  tips.kongresse = new Array(0,10,150, 'kongresse',
  '<p class="tt">Kongresse</p>' +
  '<p class="tt">Tagungen</p>' +
  '<p class="tt">Events</p>' +
  '<p class="tt">Rahmenprogramme</p>' +
  '<p class="tt">Incentives</p>');

showDelay = 50;
hideDelay = 20;
 }
