$(document).ready(function() {
    var bodyheight = $(window).height() - 90;
    $('#promotion').height(bodyheight);
});

// for the window resize
$(window).resize(function() {
    var bodyheight = $(window).height() - 90;
    $('#promotion').height(bodyheight);
});
