$(document).ready(function(){
	$(".scrollable").scrollable().navigator();
	$(".portfolio-content li").hoverIntent(
		function(){
			$(this).children(".details").fadeIn('slow');
		},
		function(){
			$(this).children(".details").fadeOut('slow');
		}
	)
	$(".portfolio-content .images li:first-child").addClass('active');
});
