 
$(document).ready(function(){
var where = "down";
$("#show_one").click(function() {
if(where =="down") {
$("#map_one").animate({height:'+=440'},	"fast");
where = "up";
} else {
$("#map_one").animate({height:'-=440'},	"fast");
where = "down";
}
});	

var where_two = "down";
$("#show_two").click(function() {
if(where_two =="down") {
$("#map_two").animate({height:'+=440'},	"fast");
where_two = "up";
} else {
$("#map_two").animate({height:'-=440'},	"fast");
where_two = "down";
}
});

 

$(".send").live('click', function() {
var imie = $("input#imie").val();
var nazwisko = $("input#nazwisko").val(); 
var telefon = $("input#telefon").val(); 
var email = $("input#email").val(); 
var wiadomosc = $("#wiadomosc").val();
$.post("wyslij.php", {imie1: imie, nazwisko1: nazwisko, email1: email, telefon1: telefon, wiadomosc1: wiadomosc }, function(data){
if(data.length >0) {
alert(data); 
}
});
});
 
 
 
}); 



 
 

 

