$(document).ready(function() {
	$("#form").hide();
	$("#rules").hide();
	$("#noform").click(function () {
		$("#noform").fadeOut();
		$("#form").show('500');
	});
	$("#norules").click(function () {
		$("#norules").fadeOut();
		$("#rules").show('500');
	});
});
