function correctImage(containerSelector,imgContainerSelector) {
    var windowHeight = $(window).height();
    var bodyHeight = $('body').height();
    var imgHeight = $(imgContainerSelector).height();

    /* REMOVE THIS WHEN CONFIG IN TOP BAR COMES IN */
    var topBarHeight = $('.topBar').height();

    if(bodyHeight < windowHeight) {
        var offHeight = (windowHeight - imgHeight) - topBarHeight;
        $(containerSelector).css({'height':offHeight+'px'});
    }
}