
$(function() {
	/*$('#w-full-bg').innerfade({
		speed: 1000,
		timeout: 10000,
		type: 'sequence',
		containerheight: '100%'
	});*/

	$('.b-cnt-images img').each(function(index){
	   $(this).overlay({
   	   target: '.nav',
   		onLoad: function() {
   			$("#main").data("scrollable").seekTo(index, 0);
   		}
	   });
   });


   $("#main").scrollable().navigator('.navi');
   var api = $("#main").data("scrollable");
   $('.nxt, .page img').click(function() {
      api.next(400)
   });
   
   $('.prv').click(function() {
      api.prev(400)
   });
   
   // horizontal scrollables. each one is circular and has its own navigator instance
   $(".scrollable-v").scrollable({ 
      vertical: true,
      }).navigator(".main_navi");
   

});

