$(document).ready( function() {
	
	$('.scrollable').scrollable( {
		'onBeforeSeek': function(event, index) {
			if (this.getIndex() >= this.getSize() - 5) {
 
		        if (index > this.getIndex()) {
        			return false;
 
	      		}
   			 }
		}	
		
	} );
	
	$('.thumb').fancybox( {
		'transitionIn'  : 'elastic',
		'transitionOut' : 'elastic',
		'speedIn'       : 600,
		'speedOut'      : 200
	} );
	
	
	$('.video').fancybox( {
		'transitionIn'  : 'elastic',
		'transitionOut' : 'elastic',
		'speedIn'       : 600,
		'speedOut'      : 200,
		'type'			: 'iframe'
	} );
	
});
