function setContentLength() {
		
		var footPosV = (window.innerWidth - 1060) / 2;
		$('#footer').css('left', footPosV);
		
		var footPos = ($('#footer').offset().top);
		var contentPos = ($('#content').offset().top);
		var contentHeight = (footPos - contentPos);
		if(parseInt($('#content').css('height')) != contentHeight) {
			$('#content').css('height',contentHeight);
		}
		
	}

$(document).ready(function(){

	// Fenstergroesse errechnen
	
	$(window).bind('resize', function(){
		setContentLength();
	});
	
	// Sidebar ein- und ausfahren
	
	$('#sb_btn').bind('click', function(){
		var oldState = $(this).attr('data-name');
		
		if(oldState == 'plus') {
			$('#sidebar').animate({
				width: '+=260'
			}, 'slow', function(){
				$('#sb_btn').css('background-image', 'url(./webcontent/graphix/buttons/sb_minus.png)');
				$('#sb_btn').attr('data-name', 'minus');
			});
		} else {
			$('#sidebar').animate({
				width: '-=260'
			}, 'slow', function(){
				$('#sb_btn').css('background-image', 'url(./webcontent/graphix/buttons/sb_plus.png)');
				$('#sb_btn').attr('data-name', 'plus');
			});
		}
	});
	
	
});


