$(document).ready(function() {
	$('#donate_click').click(function() {
		if($('#donation_instructions').is(':hidden')){
			$('#donation_instructions').slideDown();
		}else{
			$('#donation_instructions').slideUp();
		}
	});
	$('.calendarClick').click(function() {
		if($('#calendar').is(':hidden')){
			$('#calendar').slideDown('slow');
		}else{
			$('#calendar').slideUp('slow');
		}
		return false;
	});
	//WORKAROUND: stops Firefox 2 and other browsers from showing a blank window if src loaded from within iFrame. Solution found and lifted whole cloth from the folks who coded Twitlive.tv. Thank you!
	$('.calendarClick').click(function(event)
		{
			var iframe = $('iframe');
			if (!iframe.hasClass('configured'))
			{
				iframe.addClass('configured');
				iframe.attr('src','/home/calendar.html');
			}
			$('#calendar').toggle();
		});

});

<!--http://www.google.com/calendar/hosted/seattledanceproject.org/embed?showNav=0&amp;showPrint=0&amp;showTabs=0&amp;showCalendars=0&amp;showTz=0&amp;mode=AGENDA&amp;height=600&amp;wkst=1&amp;bgcolor=%23ffffff&amp;src=seattledanceproject.org_p177aab0v4oltvuhijnv7n1ndc%40group.calendar.google.com&amp;color=%23B1365F&amp;ctz=America%2FLos_Angeles&mode=AGENDA-->
