$(document).ready(function(){
	$('.wrapper-navigation>ul').esiteMenu();
	
	$('.content').esiteLightbox();
	
	function footerScale()
	{
		if ($(window).height() < $('html').height()){
			$('.halo').css('height', 'auto');
		} else {
			$('.halo').css('height', $(window).height());
		}
	}
	
	footerScale();
	
	$(window).bind('resize', footerScale);
	
	$('.activity').each(function(){
		$(this).hover(function(){
			$(this).find('.bgActivity').stop().animate({
				opacity: 1
			});
		}, function(){
			$(this).find('.bgActivity').stop().animate({
				opacity: 0
			});
		});
	});
	
});
