$(document).ready(function () {
		$('#left-body').corner('10px');
		$('#right-body').corner('10px');
		$('#left-body').mouseenter(function () {
			$('#left-body').animate({opacity: '1'},"slow");
		});
		$('#left-body').mouseleave(function () {
				$('#left-body').animate({opacity: '.6'},"slow");
		});
		$('#right-body').mouseenter(function () {
				$('#right-body').animate({opacity: '1'},"slow");
			});
		$('#right-body').mouseleave(function () {
				$('#right-body').animate({opacity: '.6'},"slow");
		});
		$('#footer-container').mouseenter(function() {
				$('#footer').fadeIn("slow");
		});
		$('#footer-container').mouseleave(function () {
				$('#footer').fadeOut("slow");
		});
		if ($(window).height() < 600) {
			$('#under-footer').text('');
		}
});
