$(document).ready(function() {
				$("#login_form").hide();
				
				$("#login").click(function() {
					$("#login").parent("p").hide();
					$("#login_form").fadeIn();
					return false;
				});

				$("#this_edition_submissions").hide();
				
				$("#read_another").html('<p><a href="#">Read other entries in this edition</a></p>').click(function() {
					$("#this_edition_submissions").fadeIn();
				});
				
			});