$(document).ready(function() {

  	$("#enews").fancybox({
  		'scrolling'				: 'no',
  		'titleShow'				: false,
  		'showCloseButton'	: true,
			'overlayOpacity'	: '0.9',
			'overlayColor'		: '#FFF',
  		});
  	
  	$("#enews2").fancybox({
  		'scrolling'				: 'no',
  		'titleShow'				: false,
  		'showCloseButton'	: true,
			'overlayOpacity'	: '0.9',
			'overlayColor'		: '#FFF',
  		});
  	
  	$("#search").fancybox({
  		'scrolling'				: 'no',
  		'titleShow'				: false,
  		'showCloseButton'	: true,
			'overlayOpacity'	: '0.9',
			'overlayColor'		: '#FFF',
  		});
  	
  	function formatTitle(title, currentArray, currentIndex, currentOpts) {
  		return '<div id="tip7-title">' + (title && title.length ? '<b>' + title + '</b>' : '' ) + 'Image ' + (currentIndex + 1) + ' of ' + currentArray.length + '</div>';
    }
    
    $("a[rel=group]").fancybox({
			'transitionIn'		: 'fade',
			'transitionOut'		: 'fade',
			'titlePosition' 	: 'inside',
			'overlayOpacity'	: '0.9',
			'overlayColor'		: '#FFF',
			'titleFormat'			: formatTitle
		});
		
		$("a.single_image").fancybox({
			'transitionIn'		: 'fade',
			'transitionOut'		: 'fade',
			'titlePosition' 	: 'inside',
			'overlayOpacity'	: '0.9',
			'overlayColor'		: '#FFF',
  		'titleShow'				: false,
  		'showCloseButton'	: false
		});
		
	});
