$(document).ready(function() {
	$('.accordian a').not(".accordian .hide a").click(function () {

		$(this).css("outline", "none");
		
		currentClass = $(this).attr("class");

		if (currentClass == 'expanded')
		{
			$(this)
			.removeClass("expanded").next('.hide')
			.hide("blind", { direction: "vertical" }, 400);
		}
		else
		{
			$(this)
			.addClass("expanded")
			.next('.hide').show("blind", { direction: "vertical" }, 400);
		};

		return false;
	});
});
