// JavaScript Document
$(document).ready(function () {
	$(".schools").add(".sports_recreation").add(".dining").add(".things_to_do").add("#info").hide();
	$("body.community_living #boxes a").click(function () {
		$("#info").fadeIn();

		var comm = '.' + $(this).attr('id');
		$("#community_up").stop();
		switch(comm) {
			case '.things_to_do':
				$("#community_up").animate({'left':'745px'}, 'slow', 'easeOutQuart');
				$("#message h2").html('&#8220;SO MUCH SHOPPING AND SO LITTLE TIME.&#8221;');
				break;
			case '.dining':
				$("#community_up").animate({'left':'561px'}, 'slow', 'easeOutQuart');
				$("#message h2").html('&#8220;YOU DON\'T HAVE TO TRAVEL FAR TO EAT WELL.&#8221;');
				break;
			case '.sports_recreation':
				$("#community_up").animate({'left':'379px'}, 'slow', 'easeOutQuart');
				$("#message h2").html('&#8220;THERE ARE GREAT SPORTS TEAMS FOR THE KIDS.&#8221;');
				break;
			default: //'.schools'
				$("#community_up").animate({'left':'195px'}, 'slow', 'easeOutQuart');
				$("#message h2").html('&#8220;THE SCHOOLS, THE SCHOOLS, THE SCHOOLS!&#8221;');
				break;
		}
		
		$(".schools").add(".sports_recreation").add(".dining").add(".things_to_do").not(comm).hide();
		$(comm).fadeIn();
		
		// slide footer into place
		$("#footer").animate({'padding-top':$("#info").height()+50}, 100);
		return false;
	});
});