﻿$(document).ajaxStop(function() {
	setWidth();
});

$(function() {
	$("#1, #2, #3").lavaLamp({
		fx: "backout",
		speed: 700,
		click: function(event, menuItem) {
			return true;
		}
	});
});

function fadeIt(div_id, value) {
	if(value == 1) {
		$('#'+div_id).fadeIn('slow');
	}
	else {
		$('#'+div_id).fadeOut('slow');
	}
}

function setWidth() {
	var w = $(".txtArea").width();
	
	if (w > 1000) {
		$(".ramka").width(w - 530);
	}
	$('.ramka:visible').each(function(index) {
		var h = $(this).height() + 80;
		if(h < 820) {
			h = 820;
		}
		$('.txtArea').height(h);
	});
}

function reloadFrames(div_id, myDivs, extraH) {
	
	
	var w = $(".txtArea").width();
	if (w > 1000) {
		$(".ramka").width(w - 530);
	}
	
	for(var i in myDivs) {
		fadeIt(myDivs[i], 0);
	}
	fadeIt(div_id, 1);
	
	var h = $('#' + div_id).height() + 80 + extraH;
	if(h < 820) {
		h = 820;
	}
	$('.txtArea').height(h);
	$('.menuPionoweTlo').height($('.menuPionowe').height() );
}

