		// initialise plugins
		jQuery(function(){
			jQuery('ul.topNavi').superfish();
		});
		
		$(document).ready(function() {

			var max_height = 0;   /* Variable zum Merken der maximalen Höhe */
			$(".tripPrev").each(function() {  	/* alle Elemente mit der CSS-Klasse durchlaufen */  
				h = $(this).height();  	/* Höhe des aktuellen Elements */  
				if (h > max_height) {  			/* Wenn aktuelle Höhe gösser unserer maximalen, Höhe merken */  
					max_height = h;  
				}  
			});
			if (max_height > 0) $(".tripPrev").height(max_height);  
		
			
		});
		
		$(document).ready(function(){
			// Dem 1. tr aus dem table wird die Klasse ‚head’ zugewiesen
		   $(".normDays table").addClass("Schiff");
		   $(".normDays table tr:first").addClass("tableHead");
			// Hier wird allen geraden Zeilen die Klasse ‘odd’ zugewiesen
		   $(".normDays table tr:even:not(.head)").addClass("tableOdd");
		});
		/*
$(document).ready(function() {
      // cookie period
      var days = 1;
      // load positions form cookies
      $(".kaefer").each( function( index ){
      $(this).css( "left",
      $.cookie( "im_" + this.id + "_left") );
      $(this).css( "top",
      $.cookie( "im_" + this.id + "_top") );
      });

      // make draggable, show, bind event
      $(".kaefer").draggable({cursor: "move"});
      $('.kaefer').show();
      $('.kaefer').bind('dragstop', savePos);

      // save positions into cookies
      function savePos( event, ui ){
      $.cookie("im_" + this.id + "_left",
      $(this).css("left"), { path: '/', expires: days });
      $.cookie("im_" + this.id + "_top",
      $(this).css("top"), { path: '/', expires: days });
      }
  });*/
	function openWindow(theUrl,windowName,windowConfig) {
		if (windowName == "") windowName = "Ansicht";
		if (windowConfig == "") windowConfig = "height=700,width=800,toolbar=yes,menubar=yes,scrollbar=yes,location=no,directories=no,resizable=yes";
		theNewWindow = window.open(theUrl,windowName,windowConfig);
	}
/*	function correctPNG() // correctly handle PNG transparency in Win IE 5.5 or higher.
	   {
	   for(var i=0; i<document.images.length; i++)
	      {
		  var img = document.images[i]
		  var imgName = img.src.toUpperCase()
		  if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
		     {
			 var imgID = (img.id) ? "id='" + img.id + "' " : ""
			 var imgClass = (img.className) ? "class='" + img.className + "' " : ""
			 var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
			 var imgStyle = "display:inline-block;" + img.style.cssText 
			 if (img.align == "left") imgStyle = "float:left;" + imgStyle
			 if (img.align == "right") imgStyle = "float:right;" + imgStyle
			 if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle		
			 var strNewHTML = "<span " + imgID + imgClass + imgTitle
			 + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
		     + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
			 + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>" 
			 img.outerHTML = strNewHTML
			 i = i-1
		     }
	      }
	   }
	if (navigator.platform == "Win32" && navigator.appName == "Microsoft Internet Explorer" && window.attachEvent) {
		window.attachEvent("onload", correctPNG);
	}*/
	 function showMouseOver(text, farbe, event)
	    {
	        document.getElementById('MouseOver').innerHTML = text;
	      
	      var xAdd = 0;
		  var yAdd = 0;
		  if (window.pageXOffset) xAdd = window.pageXOffset; // Norm
		  if (window.pageYOffset) yAdd = window.pageYOffset;
		  if (document.documentElement.scrollLeft) xAdd = document.documentElement.scrollLeft; // IE Norm
		  if (document.documentElement.scrollTop) yAdd = document.documentElement.scrollTop;
		  if (document.body.scrollLeft) xAdd = document.body.scrollLeft; // IE Quirks
		  if (document.body.scrollTop) yAdd = document.body.scrollTop;
	       
	        var topPixel = event.clientY + 10;
	       		topPixel = topPixel + yAdd;
	        var leftPixel = event.clientX + 10;
	       		leftPixel = leftPixel + xAdd;

	        document.getElementById('MouseOver').style.top = topPixel + "px";
	        document.getElementById('MouseOver').style.left = leftPixel + "px";
	        document.getElementById('MouseOver').style.backgroundColor = farbe;
	        document.getElementById('MouseOver').style.display = "block";
	    }

	    function hideMouseOver()
	    {
	        document.getElementById('MouseOver').innerHTML = "";

	        document.getElementById('MouseOver').style.top = "0px";
	        document.getElementById('MouseOver').style.left = "0px";    
	        document.getElementById('MouseOver').style.display = "none";
	    }
