$(document).ready( function() {
    var Overlay = $('#Overlay');
    if( Overlay.length > 0 ) {
        var height = parseInt(Overlay.parent().height());
        height += parseInt(Overlay.parent().css('padding-top').replace(/px/, ''));
        height += parseInt(Overlay.parent().css('padding-bottom').replace(/px/, ''));
        Overlay.css('height', height + 'px');
    }

    $('#HomeScroller').jCarouselLite({
        visible:4,
        auto:800,
        speed:2000,
        scroll:1,
        circular:true
    });
});
