$(document).ready(function() {
	
	// Attaches a click handler. When clicked the button removes itself and shows the form	
	$('#subscribe p+button').live('click', function() {
		$(this).addClass('hidden');
		$('#subscribe-form').slideDown('slow');
	});
	
	// Attaches a click handler. When clicked the button removes itself and shows the form	
	$('#subscribe a').live('click', function() {
		$('#subscribe-form').slideUp('slow', function(){
			$('#subscribe p+button').removeClass('hidden');
		});
	});
	
	// Creates the button to show the form	
	$('#subscribe p:first').after('<button class="btn-alt" type="button">Join PCSI</button>');
	
	// Creates the link to hide the form	
	$('#subscribe-fields').append('<p>or <a href="#"> Cancel</a></p>')

});
