$(function(){
	$('.hiddendetail').slideUp(1);
	
	$('.readmore').append("<p class='moredetails'>More details...</p></div>").click(function(){
		$(this).next().slideToggle(500);
		return false;
	});
	// select one or more elements to be scrollable-enabled 
	$("#mini_gallery").scrollable({ 
		size: 3,
 	    // items are auto-scrolled in 1 secnod interval 
        interval: 5000, 
         
        // when last item is encountered go back to first item 
        loop: true,  
         
        // make animation a little slower than the default 
        speed: 1600, 
        
		vertical:true

    // ... rest of the configuration properties     
	});

});


