// productdetail.layout.js

$(document).ready(function() {
	resizeContent();
});

$(window).resize(function() {
	resizeContent();
});


function resizeContent() {
	// Größe von #stage und #layout an Fenstergröße anpassen
	if($('#stage')) {
		newHeightS = $(window).height() - 30;
		$('#stage').css("height",newHeightS+"px");
	}
	if($('#layout')) {
		newHeightL = $(window).height() - 275;
		
		if(newHeightL < 425) {
			$('#layout').css("height","425px");
		} else {
			$('#layout').css("height",newHeightL+"px");
		}
	}
}