$(document).ready(function() {
	
	$("#subscribe-ct").hide();
	
	$("#subscribe-bt").click(function(event){
		$("#subscribe-ct").toggle();
		// Stop the link click from doing its normal thing
		return false;
	});
	
});	

