$(function() { 
 
	$("div.scrollable").scrollable({
		clickable: 	false
	})
	.circular();

    $('#bottomGallery .nextPage').click(function(){
    	$('#topGallery .nextPage').click();
    });
    
    $('#topGallery .prevPage').click(function(){
    	$('#bottomGallery .prevPage').click();
    });

    $('.items a').click(function(){
		var src = $(this).attr('href');
		var title = $(this).attr('title');
		
		var html = $('<img src="' + src + '" />');
    	$('#big').html(html);

    	title = title.replace(/\|/gi, '<br \/>');
    	title = title.replace(/\(/gi, '<span class="grey">');
    	title = title.replace(/\)/gi, '<\/span>');
    	
    	$('#title').html(title);
    	
		return false;
    });
}); 
