var banner_app = function()
{
	if(typeof $("a[rel=banner]").fancybox == 'function') 
	{
		$("a[rel=banner]").fancybox({
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic',
			'easingIn'      : 'easeOutBack',
			'easingOut'     : 'easeInBack',
			'titlePosition' 	: 'over',
			'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
				return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</span>';
			}
		});
	}
	if ($('div.bannerPhotos.cycle').size()) 
	{
		$('.bannerPhotos.cycle').cycle({
			fx: 'fade',
			speed: 1300,
			timeout: 3200,
			pause:   1 
		});
	}
}


$(document).ready(banner_app);
