$(window).resize(function() {
    // what is the width of the body/browser
    var window_width = $(window).width();
    
    // set up some stuff based on the width of the body/browser
    if(window_width > 767)
    {
        // set up the main menu graphic/animation
        initialize_home_menu(window_width);
    }
});

jQuery(document).ready(function($){
    // what is the width of the body/browser
    var window_width = $(window).width();
    
    // set up some stuff based on the width of the body/browser
    if(window_width > 767)
    {
        // set up the main menu graphic/animation
        initialize_home_menu(window_width);
    }
});

function initialize_home_menu(window_width)
{
    if(window_width > 1040)
        window_width = 1079;
    
    // set up the main menu graphic/animation
    $('#sbi_container').bgImageMenu({
        //defaultBg:  base_path+'images/home/1.jpg',
        pos:        0,  // select first panel (products) by default
        width:      window_width,
        height:     580,
        //menuSpeed:  300,
        border:     0,
        type:       {
                        mode:       'seqVerticalSlideAlt',
                        speed:      250,
                        easing:     'jswing',
                        seqfactor:  100
                    }
    });
}
