/* 
 * HEAVEN Layout JS
 * @author Przemysław Kapusta
 */

var Layout = {
	onDomInit: function () {
		var mainContentLeft = $('#main-content.left-side');
		if (mainContentLeft.height() < 300) {
			mainContentLeft.height(300);
		}
		$('#body-content').height($(document).height());
	}
};

DomInitFunctions.push(Layout.onDomInit);

$(window).resize(function(){
	$('#body-content').css('height', '').height($(document).height());
});
