// JavaScript Document

// basic show and hide
$(document).ready(function() {
	$(".expand").click(function(){
		$(".expandable").slideDown("slow");
		$(".moreInfo").fadeOut('slow');
	});
	$(".collapse").click(function(){
		$(".expandable").slideUp("slow");
		$(".moreInfo").fadeIn('slow');
	});
	$("#accessibility h2").click(function(){
		$(this).parent().children(".expandable").slideToggle("slow");
		if ($(this).parent().children().children(".moreInfo").css("display") == 'none')
			$(this).parent().children().children(".moreInfo").fadeIn('slow');
		else
			$(this).parent().children().children(".moreInfo").fadeOut('slow');
		});
	$(".moreInfo").click(function(){
		$(this).parent().parent().children(".expandable").slideToggle("slow");
		if($(this).css("display") == 'none')
			$(this).fadeIn('slow');
		else
			$(this).fadeOut('slow');
		});

});
