$(document).ready(function () {

	$("#nav").fadeTo(1, "0.75");

	$("#marquee_button").toggle(
		function () {
			$("#marquee_top").animate({ height: '342px' }, 500, function () {
				$("#marquee_button h1").html("&ndash;");
				$("#marquee_button p").text("Contract");
			});
		},
		function () {
			$("#marquee_top").animate({ height: '222px' }, 500, function () {
				$("#marquee_button h1").text("+");
				$("#marquee_button p").text("Expand");
			});
		}
	);

});
