
//*****************************************************************
// Swap out the background image if less than 1024px wide
//*****************************************************************
$( document ).ready ( function() {
    if (GetWidth() <= 1024) {
        $("body").css('background-image','url(images/movie_page/layout/body_bg_sm.jpg)');
    }
} );

