$(document).ready(function () {
    /* ************************************************************************************* */
    /* init homepage banner
    /* ************************************************************************************* */
        adjust();
        $('.banner-items ul').jshowoff({
            cssClass: 'banner-items ul'
        });
    /* ************************************************************************************* */
    /* ************************************************************************************* */
    /* init .banner-caption-container adjustment
    /* ************************************************************************************* */
        
    /* ************************************************************************************* */
});
function adjust() {
    var obj = $(".banner-caption-container");
    $.each(obj, function (i, val) {
        $(val).css('margin-top', -(val.offsetHeight + 35));
    });
}
