$(document).ready(function () {

    //
    // Horizontal Scroller
    //
	
	    $('#portraits-slideshow').serialScroll({
	        items: 'li',
	        prev: '#portraits a.prev',
	        next: '#portraits a.next',
	        offset: -150,
	        start: 0,
	        duration: 600,
	        stop: true,
	        lock: false,
	        cycle: true,
	        easing: 'easeOutQuart',
	        jump: true
	    });
    
	    $('#events-slideshow').serialScroll({
	        items: 'li',
	        prev: '#events a.prev',
	        next: '#events a.next',
	        offset: -150,
	        start: 0,
	        duration: 600,
	        stop: true,
	        lock: false,
	        cycle: true,
	        easing: 'easeOutQuart',
	        jump: true
	    });
    
    
    //
    // Vertical Scroller
    //
    $('#imageContainer').serialScroll({
        items: 'div.photos',
		
			prev: '#mainNav a.portraits-btn',			    	
						next: '#mainNav a.events-btn',    	
        start: 0,
        duration: 1200,
        axis: 'y',
        stop: true,
        lock: false,
        cycle: false,
        easing: 'easeOutQuart',
        jump: true 
     });

});
