$(document).ready(function(){
	
	/**
	 *	Tooltip
	 */
	$("#portfolio a.thumb[title]").tooltip({
		tip: '#tooltip',
		effect: 'slide',
        fadeOutSpeed: 100,
        position: "top center"
	});
	
	
	$("#test[title]").tooltip({
		tip: '#tooltip',
		effect: 'slide',
        fadeOutSpeed: 100,
        position: "top center"
	});
	
	
	/**
	 *	Facebox
	 */
	$('a[rel*=modal]').facebox();
	
	/**
	 *	Attiva il jCarousel per il portfolio
	 **/
	$('.portfolio_carousel').jCarouselLite({
		btnNext: ".next",
		btnPrev: ".prew",
		visible: 4,
		speed: 400,
		scroll: 1,
		circular: false
	});
	
});

