//  STINKYFEETEVENTS
//  Register JS
//  Copr. 2008

$(document).ready(function(){
	$("#personal-fields").hide();
	$("#personal-addnow").click(function(){
		$("#personal-info div.optbtns").fadeOut("fast");
		setTimeout(function(){
			$("#personal-info legend:first").html("Personal information:");
			$("#personal-fields").slideDown(); }, 150);
	})
	$("form:first").submit(function(){ return checkTerms(); });
	$("#cancelform").click(function(){ window.location = "/"; })
});

function checkTerms() {
	if ($("#terms_accept").is(":checked") == false) {
		alert("You must accept the Stinkyfeet Terms of Use and Privacy Policy to register.")
		return false;
	} else { return true; }
}