/*<![CDATA[*/
$(document).ready(function(){
  // Get current navigation link and set active class for styling
  activeNav = $("a[href='/']").parent();
  activeNav.addClass("active");
  activeSubNav = $("a[href*='/team']").parent();
  activeSubNav.addClass("active");
  $('ul.subnav', activeNav)
    .show()
    .addClass('active');
  
  $('.slider-teaser-container').serialScroll({
    items:'li',
    prev:'#slider-prev a',
    next:'#slider-next a',
    //offset:-620, //when scrolling to photo, stop 230 before reaching it (from the left)
    start:0, //as we are centering it, start at the 2nd
    exclude: 2,
    duration:1000,
    force:true,
    stop:true,
    lock:false,
    cycle:true, //don't pull back once you reach the end
    easing:'easeOutQuart', //use this easing equation for a funny effect
    jump: false //click on the images to scroll to them
  });
  
  
});
/*]]>*/
