// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

jQuery.noConflict();
jQuery(document).ready(function() {

	jQuery("#loginform").submit(function() {
		if (jQuery("input#loginTerms:checked").val() == null) {
			alert ("You must agree to our terms before proceeding.")
			return false;
		} else {
			return true;
		}
	});
	
});
