// form validator
$(document).ready(function(){
//validator
	$("#form1").validate();

//map expand
	$("#enlargeMap").click(function(){
		$("#map_canvas").animate({ 
			height: "350px",
		}, 1500 );
		$("#enlargeMap").hide();
	});
	
	
});