jQuery(document).ready(function(){
	$("#frm_contact").validate({
		debug: false,
	   	onsubmit: true,
	   	submitHandler: function(form) {
	   		$("#submit-btn").hide("fast");
	   		$("#loader").html("<img src=\"/_img/ajax-loader.gif\" />");	   		
		    form.submit();
	   },
    	errorPlacement: function(error, element) { 
	        error.appendTo( element.parent().next() ); 
        } 
	})
});



