// Initialize Product Menu
$(document).ready(initializeBrandScroller);

function initializeBrandScroller() {
  $('#slider').serialScroll({
    event: 'mouseover',
    items: 'li', // Selector to the items ( relative to the matched elements )
    prev: '#lm_brand_scroller a.left', // Selector to the 'prev' button (absolute!, meaning it's relative to the document)
    next: '#lm_brand_scroller a.right', // Selector to the 'next' button (absolute!, meaning it's relative to the document)
    start: 7,
    step: 7,
    exclude: 7,
    duration: 500, // Length of the animation (if you scroll 2 axes and use queue, then each axis take half this time)
    lock: true,
    force: true,
    cycle: false
  });
};