// JavaScript Document

$(document).ready(function (){
	
	$("div.scrollable").scrollable({
		size: 6,
		easing: 'swing',
		speed: 800
	}).find("a.thumb").tooltip({ 
		tip: '#tooltip',
		effect: 'slide'
	});
	
	$("a[rel]").overlay({
		expose: {
    	    color: '#000',
	        loadSpeed: 200,
	        opacity: 0.6
	    }
	});
	
	/*
	$(".items img[title]").tooltip('#tooltip');
	*/

});
