$(document).ready(function() {
	
	$("#login_link a").fancybox();
	
	$(".iframe").fancybox({
				'titleShow'		: false,
				'width'			: 750,
				'height'		: 640,
				'scrolling'		: 'auto'
			});		

	$(".lightbox").fancybox({
				'titleShow'		: false
			});				

	$(".lightgroup").fancybox({
				'titleShow'		: true,
				'titlePosition'	: 'over',
				'titleFormat'	: function(title, currentArray, currentIndex, currentOpts) {
								  return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}				
			});
});

