$(document).ready(function(){
	$("#iagree").click(function(){
		if($(this).attr("checked")) {
			$("#termsholder").slideUp("slow");
			setTimeout(function(){
				$("#login").fadeIn("slow");
				$("#welcome").html("Please Sign In");
			},700);
		}
	});
});
