$(document).ready(function() {
    $(".cut_ref.clicker").click(function() {
        $(".cut_ref.clicker").hide();
        $(".ful_ref").show();
    });
    $(".ful_ref").click(function() {
        $(".ful_ref").hide();
        $(".cut_ref.clicker").show();
    });

    // otevreni mapy Google po vyplneni "Kudy k nam" v kontaktech
    $(".map_form").submit(function () {
        var id_form = $(this).attr("id");
        var address = $("#" + id_form + " #address").val();
        var dest_address = $("#" + id_form + " #dest_address").val();

        if ('' != address) {
            address = "http://maps.google.com/maps?q=from:" + address + ",CZ to:" + dest_address;
            window.open(address);
        }

        return false;
    });

});

