function sendMail() {
	var imienazwafirmy = $('#imienazwafirmy').val();
	var emailosoby = $('#email').val();
	var temat = $('#temat').val();
	var tresc = $('#tresc').val();
	$.post("functions/mail.php", {imienazwafirmy: imienazwafirmy, emailosoby: emailosoby, temat: temat, tresc: tresc}, 
	function(data) {
		$('#formularz-status').html(data);
	});
}

$(document).ready(function(){	

/* $('#menu li a').hover(function() {
	czyaktywny = $(this).attr("class");
	klasa = $(this).parent().attr("class");
	element = $(this).parent().attr("id");
	if (klasa == '') {
		$(this).parent().addClass(element+"-aktywny");
	} 
}, 
function() {});
	czyaktywny = $(this).attr("class");
	klasa = $(this).parent().attr("class");
	element = $(this).parent().attr("id");
	if (klasa != '') {
		$(this).parent().removeClass(element+"-aktywny");
	}
	*/
	
//$(".scrollable").scrollable({ circular: true }).autoscroll({interval: 3000	}).navigator();

    $('.slideshow').cycle({fx: 'fade', speed: 1500, timeout: 5000});


$("div.katalog-szczegoly span[rel]").overlay({effect: 'apple', top: 'center', closeOnClick: true});
$width = $("div.overlay img").attr("width");
$height = $("div.overlay img").attr("height")+40;
$('div.overlay').css({'width': $width, 'height': $height});

$('.dostosowany-lewo').height($('.dostosowany-prawo').height());

//$toppodstrony = ($("#podstrona-katalog").height())+138;
$("#footer-katalog").css('width', screen.width);
$obliczenia = 0 - ((screen.width - 960)/2)-10;
$("#footer-katalog").css('left', $obliczenia)
 
});