$(document).ready(function() {
	$("a.fancybox").fancybox({
		'titleShow'		: false
	});
	
	$("a[title='login']").fancybox({
		'titleShow'		: false
	});
	
	$(".fancyvideo").fancybox({
		'autoScale'		: 'false',
		'transitionIn'	: 'fade',
		'transitionOut'	: 'fade',
		'speedIn'		: '500',
		'speedOut'		: '500',
		'type'			: 'iframe',
		'overlayOpacity': '0.9',
		'overlayColor'	: '#5b5858',
		'titleShow'		: false
	});

	// set up tooltips
	$("#share a").hover(function() {
		$(this).find(".tooltip").fadeIn(300);
	}, function() {
		$(this).find(".tooltip").fadeOut(300);
	});
});
