$(function(){
	$('.member_form .link > a').each(function(){
		$(this).click(function(){
			$(this).parents('.member_form').children('.form').toggle();
			$(this).parents('.affiliation_box').find('.secondary').toggle();
		});
	});
	
	var zIndex = 150;
			$('.affiliation_box').each(function(){
				$(this).css({ 'z-index': zIndex-- });
		});
});