$(function(){
	$(".fancyboxImg").fancybox({'overlayShow': true});
});

$(function(){
	$('#footer-menu ul li:last').addClass('last-li');
});

/*	
$(function(){
	$('#rotator').cycle({fx:'fade', timeout:4000});
});
*/


$(function(){
	countImages = $('.bannerimg',this).length;
	
	if(countImages>1) {
		$('#photoCounter li:first').addClass('active');
	}
	
	$('.bannerimg').hide();
	$('.bannertxt').hide();
	$('#bannerpict1').show();
	$('#bannertxt1').show();
	
	$('#photoCounter li').each(function() {
		$(this).bind('mouseover', function(e) {
			$('#photoCounter li').removeClass('active');
			$(this).addClass('active');
			n = this.innerHTML;
			picture = '#bannerpict' + n;
			txt = '#bannertxt' + n;
			$('.bannerimg').hide();
			$('.bannertxt').hide();
			$(picture).show();
			$(txt).show();
		});		
	});
});
