
/* Stuff for new registration page */
$(function() {

	$('.location h3 a').click(function(e) {
		var tbl = $(this).parent().siblings('.table').first(),
			span = $(this).children('span').first();
		tbl.slideToggle();
		span.text((span.text() === '▼') ? '▶' : '▼');
		e.preventDefault();
	});
	    
});
