$.fn.pause = function(duration) {
    $(this).animate({ dummy: 1 }, duration);
    return this;
};

// execute your scripts when DOM is ready. this is a good habit
$(document).ready(function() {		
		
	interval = 500;	
	i = interval;
	$("div.scrollable #thumbs div").each(function() {
		$(this).hide();
		
		$(this).pause(i).fadeIn(500);
		
		i+=interval;
	});
	
	/*
	// initialize scrollable 
	$("div.scrollable").scrollable({
		size: 3,
		items: '#thumbs',  
		hoverClass: 'hover'
		//interval: 3000,
		//speed: 2500,
		//loop: true
	});	
	*/
});