$(document).ready(function() {

	if( $('ul.visible>li>a.active').size()>0 ) $('ul.visible').show();
	else $('ul.visible').slideDown(800);
		
	$("a[rel=fotos]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">foto ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	
	
});


