//Portfolio Enhancements
$(document).ready(function() {
	// jQuery Scrollable Plugin call
	$('div.scrollable').scrollable({
		size: 1
   	});
	// Tooltip plugin call
	$('.folio_img').tooltip({
		track: true, 
		delay: 0,
		bodyHandler: function() { 
			return $($(this).next()).html(); 
		},
		extraClass: "folioTip",
		showURL: false, 
		fixPNG: true, 
		top: -5, 
		left: 25,
		fade: 125
	});
});