/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function() {
  
  // position the shadow divs
  getMywidth();
  function getMywidth() {
    var x = $(window).width();
    var y = (x-780)/2;
    $('.shadow-overlay-left').width(y);
    $('.shadow-overlay-right').width(y);
  }
  $(window).resize(function() {
    getMywidth();
  });
  
  // Jcar settings
  $('#mainjcar').jcarousel({
    // Configuration goes here
    auto: 6,
    start: 2,
    scroll: 1,
    wrap: 'last',
    animation: 'slow'
  });
  

});


