$(document).ready(function(){
	$(window).resize(function() {
		resizeColumns();
	});
	if (jQuery.browser.msie) {
		$('div#pageRightColumn').height($('body').height());
		setInterval(function(){
			if ($('body').height() < $('div#pageRightColumn').height()) {
				$('body').height($('div#pageRightColumn').height());
			}
		}, 100);
	}
	initCatalogPositioner();
	resizeColumns();
});

function resizeColumns()
{
	var leftColumwidth = $('div#pageLeftColumn').width();
	if (leftColumwidth < 1199) {
		$('div#pageRightColumn').width('32%');
	} else {
		var rightColumWidth = $(window).width() - leftColumwidth;
		$('div#pageRightColumn').width(rightColumWidth);
	}
}

function initCatalogPositioner()
{
	if (!$('div#pageRightColumn div.l-fixer').length)
	{
		return;
	}
	var initialWidth = $('div#pageRightColumn div.columnContainer:first').width();
	var catalogContainer = $('div#pageRightColumn div.l-fixer:first');

	catalogContainer.css('position', 'fixed');
	catalogContainer.css('top', '0');
	catalogContainer.css('width', initialWidth + 'px');
	$(window).resize(function() {
		catalogContainer.css('width', $('div#pageRightColumn div.columnContainer:first').width() + 'px');
	});
}
