
$(document).ready(function() {

	// No JS Fallback
	$('body').addClass("js")	
	
	// fuers Eyekit-Bearbeitungsfenster
	if (top != window) {
		document.body.style.paddingTop = "20px";
	}
	// Inner Fade
	$('ul#keyVisual').innerfade({
						speed: 1000,
						timeout: 5000,
						type: 'sequence',
						containerheight: '180px'
					});
					
	// Superfish Plugin
	if ($("ul#mainNav").length != 0) {
		$("ul#mainNav").superfish({
			delay: 500,
			animation: {
				opacity: "show",
				height: "show"
			},
			speed: "fast",
			autoArrows: false,
			dropShadows: false,
			disableHI: true
		});
	
		// li.first-child setzen
		$("ul#mainNav li:first-child").addClass("first-child");
	}
	
	// da container nicht 960px
	if ($("table.table3col").length != 0) {
		$("table.table3col th:first-child, table.table3col td:first-child").addClass("col1");
	}
	
	// Site-Logo in Print-Stylesheet
	var logoLink = $("h1#logo a");
	var logoUrl = logoLink.css("background-image");
	var printLogoSrc = logoUrl.substring(logoUrl.indexOf("http"), logoUrl.lastIndexOf(".") + 4);
	$('<img src="' + printLogoSrc + '" alt="" id="printLogo" />').insertBefore("h1#logo");

});
