$(function() {
    $("#contact_form").submit(function() {
        $("#form_msg").fadeOut('fast');
        if (!$(this).data('send')) {
            $.post($(this).attr("action"), $(this).serialize(), function(d) {
                $("#form_msg").html(d.msg);
                $("#form_msg").fadeIn('fast');
                $(this).data('send', false);
            }, 'json');
        }
        return false;
    });
});
function showAddBar() {
    if ($(window).width() > ($('#outer').width() + ($('#add_bar').width() * 2))) {
        $('#add_bar').fadeIn();
    } else {
        $('#add_bar').fadeOut();
    }
}

