$(document).ready(function()
{
	$(".thumbnails").scrollable({mousewheel:true});
	$(".thumbnails").find("img").each(function(index)
	{
 		var $imagegroup = $(this).closest(".imagegroup");

        // thumbnail images trigger the overlay 
        $(this).overlay({ 

            effect: 'apple', 
            target: $imagegroup.find('.overlaybox'), 
            expose: {maskId: 'mask'}, 

            onLoad: function() { $imagegroup.find(".images").scrollable({mousewheel:true}).seekTo(index,0); } 
        }); 
	});
	
	$(".showlate").show();

	// enable reflections 
    $("div.scenes .thumbnails img").reflect({height: 0.5, opacity: 0.3});
});
