 $(document).ready(function() {    
      $("#template_slide_up").scrollable({ 
      		circular: true, 
      		mousewheel: false,
      		speed:1500,
      }).navigator().autoscroll({autoplay: true, interval: 99999}); 
      
      $("#template_slide_up_video").scrollable({ 
      		circular: true, 
      		mousewheel: false,
      		speed:1500,
      }).navigator().autoscroll({autoplay: false}); 
      
      $("#template_slide_down").scrollable({ 
      		circular: true, 
      		mousewheel: false,
      		speed:1500,
      		clickable: false,
      }).navigator().autoscroll({autoplay: false}); 
      
      $("#template_slide-icon").scrollable({
      		autoplay: false, 
      		circular: true, 
      		mousewheel: false,
      		speed:1500,
      }).navigator().autoscroll({autoplay: false}); 
      
      $("#template_slide").scrollable({
      		autoplay: false, 
      		circular: false, 
      		mousewheel: true,
      		naviItem: 'a',
      		speed:400,
      		onSeek: function(event, i) {
						 $('input[name="template_id"]').val(i);
					}
      }).navigator().autoscroll({autoplay: false});  
        			
});
    
    
    
