//Draggable
$(function() {
	$(".fenster1").draggable({ 
		cancel: '.inhalt',
		containment: 'body',
		scroll: false,
		stack: { group: '.fenster1', min: 1 }
	});
});
//Resizeable
$(function() {
	$(".fenster1").resizable({
		handles: 'n, e, s, w, ne, se, sw, nw',
		containment: 'body',
		minHeight: 80,
		minWidth: 138,
		maxHeight: $(window).height(),
		maxWidth: $(window).width()
	});
});

//Draggable
$(function() {
	$(".fenster2").draggable({ 
		cancel: '.inhalt',
		containment: 'body',
		scroll: false,
		stack: { group: '.fenster2', min: 1 }
	});
});
//Resizeable
$(function() {
	$(".fenster2").resizable({
		handles: 'n, e, s, w, ne, se, sw, nw',
		containment: 'body',
		minHeight: 80,
		minWidth: 138,
		maxHeight: $(window).height(),
		maxWidth: $(window).width()
	});
});
