//SCRIPT FOR SIGN UP ROLL DOWN

$(document).ready(function(){
	
	
	$("#div_signup_back").hide();
	$(".signup_button").click(function(){
		$("#span_terms").html("By clicking \"Create Account\" you agree to SampleBoard's <a href=\"${root}\\terms-of-service\">Terms & Conditions</a>.");
		$("#div_signup").css("background-image", "url(../images/sign_up_for_sampleboard_text.png)");
		$("#div_signup_back").slideToggle(1500);
		return false;
	});
	
	$(".tryit_button").click(function(){
		$("#span_terms").html("Your free trial lasts for 14 days after you sign up. At the end of your trial you will be required to enter your billing information in order to continue using your SampleBoard account. You may cancel at any time. By clicking \"Create Account\" you agree to SampleBoard's <a href=\"\">Terms & Conditions</a>.");
		$("#div_signup").css("background-image", "url(../images/sign_up_for_sampleboard_trial_text.png)");
		$("#div_signup_back").slideToggle(1500);
		return false;
	});
	
	$("#a_exit_signup").click(function(){
		$("#form_signup").validationEngine('hide');
		$("#div_signup_back").slideToggle(1500);
		return false;
	});

});
