// JavaScript Document
// from now on, use $j('.foo') instead of $('.foo')
$().ready(function() {
	// validate the comment form when it is submitted
	$("#form1").validate({
	});
	
	$("#form2").validate({
	});

});