$(document).ready(function(){ 
	 // initialize scrollable  
    $(".scrollable-showcase").scrollable({ 
        items: '#container-showcase',
		size: 3,
		speed: 500,
		easing: 'swing',
		clickable: false,
		disabledClass: 'disabled',
		next: '#next-showcase', 
    	prev: '#prev-showcase' 
    }).autoscroll({
		autoplay: true,
		interval: 6000
	}).circular().navigator().find('a').overlay({	
		// each trigger uses the same overlay with the id "gallery"
		target: '#gallery',
		// optional exposing effect
		expose: '#eee'	
	// let the gallery plugin do its magic!
	}).gallery();
});
