// execute your scripts when DOM is ready. this is a good habit

jQuery(function() {		
		
	// initialize scrollable 
	jQuery("div.scrollable").scrollable({
		size:3,
		items: '#thumbs',  
		easing: "swing" ,
    // items are auto-scrolled in 2 secnod interval         
	   //interval:4000,                  
	// when last item is encountered go back to first item         
	   loop: true,                   
	// make animation a little slower than the default         
	   speed: 600,                  
	// when seek starts make items little transparent 
	   onBeforeSeek: function() {             
	       this.getItems().fadeTo(300, 0.1);                 
	   },                  
	// when seek ends resume items to full transparency         
	   onSeek: function() {             
	       this.getItems().fadeTo(300, 1);         
	   } 

	});
	jQuery("a[rel^='prettyPhoto']").prettyPhoto({theme:'dark_rounded'});
	jQuery.noConflict();	
});
