$(document).ready(function() {
/*	// Animate footer to the bottom
	$('#footer_wrapper').css({
		'left': (($(window).width() - $('#footer_wrapper').width()) / 2) + 'px'
	}).animate({
		'top': ($(window).height() - $('#footer_wrapper').height()) + 'px'
	});

	
	// Animate content to the center
	var innerHeight = $(window).height() - $('#content_header').height() - $('#footer_wrapper').height();
	var topPadder = (innerHeight - $('#content_content').height()) / 2;
	$('#content_content').css({
		'left': (($(window).width() - $('#footer_wrapper').width()) / 2) + 'px'
	}).animate({
		'top': (topPadder + $('#content_header').height()) + 'px'
	});
*/	
	$('#fe_content_padding a span').css({
		'opacity': 0.3
	});
	
	$('#fe_content_padding a').mouseenter(function() {
		$('span', this).stop().animate({
			'height': '224px'
		});
	}).mouseleave(function() {
		$('span', this).stop().animate({
			'height': '0px'
		});
	});
	
	
	$('.areaContainer div').each(function() {
		$(this).css({
			'left': (($(this).parent().width() - $(this).width()) / 2) + 'px'
		});
	});
});


