﻿// jQuery Initialization for plugins
$(document).ready(function () {
  $('#Gallery .images').serialScroll({
    items:'div',
    prev:'#Gallery .navigation a.prev',
    next:'#Gallery .navigation a.next',
    start:1, //as we are centering it, start at the 2nd
    duration:100,
    stop:true,
    lock:false,
    step:2
  });
});