$(document).ready(function() {
			$(".expandLink").each(function() {
				$("#"+$(this).attr("rel")).css("display", "none");
				$(this).addClass("up");
			});
			$(".expandLink").click(function() {
				if($("#"+$(this).attr("rel")).css("display") == "none") {
					$("#"+$(this).attr("rel")).show("blind", { direction: "vertical" }, 1000);
					$(this).removeClass("up");
					$(this).addClass("down");
				}
				else {
					$("#"+$(this).attr("rel")).hide("blind", { direction: "vertical" }, 1000);
					$(this).removeClass("down");
					$(this).addClass("up");
				}
			});
		});
