$(function() 
{		
	$("div.gallery-1").scrollable
	({ 
    	next: 'a.gallery-1-next', 
    	prev: 'a.gallery-1-prev',
    	loop: true,
    	size: 5
	});
	
	$("a.showlarge").fancybox();
	
	$('div.tooltip').hide();
	
    $('a.showlarge').hover(function() 
    {
        $(this).siblings('div.tooltip').fadeIn('fast');
    }, 
    function() 
    {
        $(this).siblings('div.tooltip').fadeOut('fast');
    });
});