

    try {
      stepcarousel.setup({
        galleryid: 'bannerdiv', //id of carousel DIV
        beltclass: 'belt', //class of inner "belt" DIV containing all the panel DIVs
        panelclass: 'panel', //class of panel DIVs each holding content
        autostep: {enable:true, moveby:1, pause:5000},
        panelbehavior: {speed:500, wraparound:true, wrapbehavior:'slide', persist:true},
        defaultbuttons: {enable: false, moveby: 1},
        contenttype: ['inline'] //content setting ['inline'] or ['ajax', 'path_to_external_file']
      })
    } catch(err) {}



(function($) {
    // your jquery code here that still uses $
    

    $(document).ready(function(){
      
      $('a.tipped').tipsy({gravity: 'e'});
      $('.quick-access a').tipsy();

    });
})(jQuery);

