// ACTIVATE FEATURED
$(document).ready(function(){
	$("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
});
// FANCYBOX
$(document).ready(function() {
	$("a[rel=lightbox]").fancybox({
		'transitionIn'		: 'none',
		'overlayColor'		: '#000',
		'overlayOpacity'	: '0.8',
		'transitionOut'		: 'none',
		'titlePosition'		: 'over',
		'titleFormat'			: function(title, currentArray, currentIndex, currentOpts) {
	return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
});
