$(function(){
	
	var verticalHeight = $('#top-bar').height() + $('#header').height() + $('#menu').height() + $('#body').height() + $('#footer').height();
	var windowHeight = $(window).height();
	var documentHeight = $(document).height();
	var sidebarHeight = $("#sidebar-right").height();
	var contentHeight = $("#content").height();
	
	if (documentHeight == windowHeight)
	{
		//alert('doc: ' + documentHeight + ' win: ' + windowHeight + ' vert: ' + verticalHeight);
		var diff = windowHeight - verticalHeight;
		contentHeight += diff;
		$("#content").height(contentHeight);
	}

	if (sidebarHeight < contentHeight)
	{
		$("#sidebar-right").height(contentHeight);
	}
	
});

