$(function(){
    $("a.fancybox").fancybox();

    $("a.button.contact_employee").live('click', function(e){
        e.preventDefault();
        var el = $(this);
        $.get(el.attr('href'), {}, function(data){
            $.fancybox(data, {
                'autoDimensions': false,
                'width': 590,
                'height': 'auto'
            });
        });
    });
});

