$(document).ready(function() {
	var index=0;
	var index2=0;
	var k = 0;
	var open = false;

	$("#open").each(function () {
		open = true;
		index2 = $(this).attr("iddiv");
	});
	
	$(".op").toggle(
		function () {
			if ((index!=$(this).attr("iddiv"))&&(k>0)) {
				var h = parseInt($(".second[iddiv="+index+"]").hide().css({'background':'none'}).height());
				$('#content .left, #content .right').height($('#content .left, #content .right').height()-h);
				$('#content .center').height($('#content .center').height()-h);
				$('#content .center .col-center').height($('#content .center .col-center').height()-h);
				$(".first[iddiv="+index+"]").css({'background':'url(/bitrix/templates/altpack/images/menu-bot.jpg) repeat-x left bottom','paddingBottom':'5px'});
			}
		        if ((k==0)&&(open)) {
				var h = parseInt($(".second[iddiv="+index2+"]").hide().css({'background':'none'}).height());
				$('#content .left, #content .right').height($('#content .left, #content .right').height()-h);
				$('#content .center').height($('#content .center').height()-h);
				$('#content .center .col-center').height($('#content .center .col-center').height()-h);
				$(".first[iddiv="+index2+"]").css({'background':'url(/bitrix/templates/altpack/images/menu-bot.jpg) repeat-x left bottom','paddingBottom':'5px'});
			}
			index = $(this).attr("iddiv");
			var h = parseInt($(".second[iddiv="+$(this).attr("iddiv")+"]").show().css({'background':'url(/bitrix/templates/altpack/images/menu-bot.jpg) repeat-x left bottom','paddingBottom':'5px'}).height());
			$(this).css({'background':'none'});
			$('#content .left, #content .right').height($('#content .left, #content .right').height()+h);
			$('#content .center').height($('#content .center').height()+h);
			$('#content .center .col-center').height($('#content .center .col-center').height()+h);
			k++;
		},
		function () {	
			var h = parseInt($(".second[iddiv="+$(this).attr("iddiv")+"]").hide().css({'background':'none'}).height());
			$('#content .left, #content .right').height($('#content .left, #content .right').height()-h);
			$('#content .center').height($('#content .center').height()-h);
			$('#content .center .col-center').height($('#content .center .col-center').height()-h);
			$(this).css({'background':'url(/bitrix/templates/altpack/images/menu-bot.jpg) repeat-x left bottom','paddingBottom':'5px'});
		}
	);
	
	$("#open").css({"display":"block", 'background':'url(/bitrix/templates/altpack/images/menu-bot.jpg) repeat-x left bottom','paddingBottom':'5px'});
	
	$(window).bind('load', function () {
		$('#content .center .col-center').height($('#content').height());
		$('#content .center .col-center2').height($('#content').height()); 
		$('#content .col-left, #content .col-right').height($('#content').height());
		$('#content .left, #content .right').height($('#content').height());        		
	});    
	
	$("img").live('load', function () {
		
		$('#content .center .col-center').height($('#content').height());
		$('#content .center .col-center2').height($('#content').height());  
		$('#content .col-left, #content .col-right').height($('#content').height());		
		$('#content .left, #content .right').height($('#content').height());                    
	});
});

		
