$(document).ready(function() {		// Website initialisieren	initWebsite();});$(window).resize(function(e){	refreshWebsite();});function initWebsite() {		/* Website-Height */	var heightHTML = $('html').height();	var heightBody = $('#container').height() + $('#naviContainer').height();	var heightHeaderFooter = heightBody - $('.content').height();	if(heightHTML > heightBody) {		$('.content').css('height', heightHTML - heightHeaderFooter);	}	/* Background-Height*/	function setPageHeight() {		var pageHeight = $('div#websiteContainer').height();		$('div#bgleft').height(pageHeight);		$('div#bgright').height(pageHeight);	}	setTimeout(setPageHeight, 300);		/* Galerie Text zu hoch */	if($('.galerietext_bottom').height() == 60) {		var newGalHeight = $('.galerietext_middle').height() - 30;		$('.galerietext_middle').height(newGalHeight);	}		/* prettyPhoto Gallery */	$("a[rel^='prettyPhoto']").prettyPhoto({animationSpeed:'slow',show_title:false, default_height: 320, slideshow:5000,gallery_markup:''});		/* prettyPhoto Gallery - Video-Content */	$(".videoContent").parent().append('<div class="videoContent2" style="display: none;"></div>');	$("a[rel^='prettyPhoto']").click(function() {		$("div.videoContent2").height($("div.videoContent").height());		$("div.videoContent").hide();		$("div.videoContent2").show();	});		/* Kontaktformular Link */	$('a.KontaktformLinkHover').hover(function() {		$('a.KontaktformLinkHover img').attr('src', 'http://tabernakel-artglass.de/templates/round/images/kontakt-icon.gif');	}, function() {		$('a.KontaktformLinkHover img').attr('src', 'http://tabernakel-artglass.de/templates/round/images/kontakt-icon-normal.gif');	});	}function refreshWebsite() {}
