$(document).ready(function() {

$(function() {
    var bar = $('#footer_cta');
    var top = bar.css('top');
    $(window).scroll(function() {
        if($(this).scrollTop() > 150) {
            bar.stop().animate({'bottom' : '0px'}, 250);
        } else {
            bar.stop().animate({'bottom' : -90}, 250);
        }
    });
});


    });
