jQuery(document).ready(function($){

	adjustPageHeight();

	$('.section.portal .shop h4 a.btn_show').live('click', function(){
		$(this)
			.removeClass('btn_show').addClass('btn_hide')
			.parents('h4').next('ul').show(150, adjustPageHeight)
		;
		$('.section.portal').adjColHt();
		return false;
	});
	$('.section.portal .shop h4 a.btn_hide').live('click', function(){
		$(this)
			.removeClass('btn_hide').addClass('btn_show')
			.parents('h4').next('ul').hide(150, adjustPageHeight)
		;
		$('.section.portal').adjColHt();
		return false;
	});
	
	function adjustPageHeight () {
		$('.section.portal').adjColHt();
		$('body:not(.product) .section-1').adjColHt('.section-1, .section.filters');
		$('body.product #pageBody').adjColHt('#pageBody, .section-1, .section.filters, .section.sidebar');
	}
});

