$(document).ready(function(){
	$("a[rel=gallery]").fancybox({
		'titlePosition' 	: 'over',
		'padding'			: 5,		
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'speedIn'			: 450,
		'speedOut'			: 300,
		'cyclic' 			: false,
		'autoScale' 		: false,
		'overlayColor' 		: '#2b2b2b',
		'overlayOpacity'	: 0.8,		
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
	});
}); 

$(function(){	
	$('.tooltip, a').tooltip({
		track: true, 
		delay: 0, 
		showURL: false, 
		showBody: " - ",	
		fade: 500 
	});	
});
