$(function() {

	$("a.photo").fancybox({
		zoomOpacity:	true,
		zoomSpeedIn:	300,
		zoomSpeedOut:	300,
		overlayShow:	true,
		overlayOpacity:	0.5
	});
});

(function banner() {

	var images = $('#banner').find('img');		
	var num = 1;
	
	this.rotate = function() {
		$(images[num - 1]).fadeOut(1500, function() {
			// $(this).removeClass('active');
		});
		
		num = (typeof images[num] != 'undefined' ? num + 1 : 1);
		
		$(images[num - 1]).fadeIn(1500, function() {
			// $(this).addClass('active');
		});
		setTimeout(function(){this.rotate()}, 5000);
	};
	
	this.init = function() {	
		setTimeout(function(){this.rotate()}, 5000);
	}();
	
}());
