var layoutTimeout = null;
			function doMainContainerResize() {
				if (!layoutTimeout) {
					layoutTimeout = window.setTimeout(function() {
						layoutTimeout = null;
						var currentHeight = Fensterhoehe();
						$('.middleContent').height(currentHeight - 60 - 120);
					}, 300);
				}	
			}
			
			function Fensterhoehe () {
			 return document.documentElement.clientHeight;
			}

			
			$(document).ready(function() {	
				//Lightbox
				$("a[@rel*=lightbox]").lightBox({
					txtImage : "Bild",
					txtOf : " / "
				});
				
				$("#lightbox-link").lightBox({
					txtImage : "Bild",
					txtOf : " / "
				});
				
				//$(window).bind("resize", doMainContainerResize);
				//doMainContainerResize();	// first resize on load
				
				/* RESIZE OF MAINDIV */	
			});

