var gallery_app = function()
{
	if(typeof $("a[rel=gallery]").fancybox == 'function') 
	{
		$("a[rel=gallery]").fancybox({
			'overlayOpacity'	: 0.9,		
			'overlayColor'		: '#000',
			'titlePosition' 	: 'outside',
			overlayOpacity 	: 0.8,
			overlayShow: true,
			'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
				//return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + '/' + currentArray.length + ' ' + title + '</span>';
				return '<span id="fancybox-title-over"> ' + title + ' - ' + ' Image ' +  (currentIndex + 1) + '/' + currentArray.length + '</span>';
			}
		});
	}
	if ($('div.bannerPhotos.cycle').size()) 
	{	
		$('.bannerPhotos.cycle').cycle({
			fx: 'fade',
			speed: 1300,
			timeout: 3200,
			pause:   1 
		});
	}
}


$(document).ready(gallery_app);

