$(function(){
    if ($(window).height() >= $(document).height()) 
        $('#content').height($(window).height() - 294);
    $('#bgr').css('height', $('#main').height() - 115);
    
    $("#kontaktForm form").submit(function(){
        $('#msg').text('Wysyłanie...');
        var nadawca = $('#nadawca').attr('value');
        var tresc = $('#tresc').attr('value');
        
        $.ajax({
            type: "POST",
            url: "email.php",
            data: "nadawca=" + nadawca + "& tresc=" + tresc,
            
            success: function(data){
                $('#msg').text('Wiadomość wysłana!');
            }
        });
        return false;
    });
    
    $('#messages .mes').hide();
    $('#messages .title').click(function(){
        $(this).next().toggle();
    });
    if($('#map').length>0)
		initialize();
});
