// JavaScript Document

// initialise Superfish 
/*
$(document).ready(function(){ 
$("ul#listNaviMain").superfish({ 
	pathClass:  'current' 
	}); 
});
*/ 

/**
 * getWindowsInnerHeight
 *
 * Hilfsfunktion um innere Fensterh�he zu ermitteln.
 * @height      int Vorgegebene H�he falls Ermittlung versagt.
 * @placeholder int Abz�glich vorkalkuliertem Platzbedarf.
 */
function getWindowsInnerHeight( height, placeholder ){
	// Alle Browser au�er IE.
	if (self.innerHeight) {
		height = self.innerHeight;
	}
	// IE 6 strict Mode
	else if (document.documentElement && document.documentElement.clientHeight) {
		height = document.documentElement.clientHeight;
	}
	// Alle anderen IE's.
	else if (document.body) {
		height = document.body.clientHeight;
	}

	return height-placeholder;
} // -getWindowsInnerHeight
