$(function() {
		$("#invite_frm").validate({  
			
	 errorPlacement: function(error, element) {
   		 $("#err").html(error.text());
		 $("em").remove();
  	 } ,
	  invalidHandler: function(form, validator) {
			 $("#mem-err").hide();
	 }
							
	 });
	 
	 	$("#mem_frm").validate({  
			
	 errorPlacement: function(error, element) {
   		 $("#non-memerr").html(error.text());
		 $("em").remove();
	 },
	  invalidHandler: function(form, validator) {
			 $("#mem-err").hide();
	 }
   });

		//$("#invite_frm").validate();
		
/*$('.bisan-unsa').bind('mouseenter', function() {
	  var bx = $(this).attr('id');
	 
	 $("#hover-" + bx).addClass("showBox");
		   
	 
	// $("#cont-" + bx).hide();
	 	$('#hover-' + bx).bind('mouseenter mouseleave', function() {
						$("#cont-" + bx).toggle();										
			})
	 
	});

$('.bisan-unsa').bind('mouseleave', function() {
	  var bx = $(this).attr('id');
	  $("#hover-" + bx).removeClass("showBox");

});*/
});
