jQuery(document).ready(function(){
	jQuery("#registration-form").validator();
	
	jQuery("#validity").click(function(e){
		e.preventDefault();		
		jQuery(e.target).parent().next('.popup').show("slow");
		jQuery(document).click(function(){jQuery('.popup').hide();});
	});
});
