$(document).ready(function()
{
	$("#submit").bind("click",function ()
			{
			$("#form").submit();
			}
	)
	
    $("#form").validate();


});