;(function($){$.fn.iPhorm=function(options){return $(this).each(function(){var $form=$(this);$form.submit(function(event){event.preventDefault();$form.ajaxSubmit({async:false,dataType:'json',success:function(response){if(response.type=='success'){$('.qtip').hide();$('.iphorm-container',$form).fadeOut('fast',function(){$('.iphorm-message',$form).hide().html(response.data).fadeIn('fast')})}else if(response.type=='message'){$('.form-errors',$form).remove();$('.iphorm-message',$form).hide().html(response.data).fadeIn('fast')}else if(response.type=='error'){$('.form-errors',$form).remove();$.each(response.data,function(index,info){if(info.errors!=undefined&&info.errors.length>0){$element=$("[name='"+index+"']",$form);if($element.size()){var $errorList=$('<ul class="form-errors"></ul>');$.each(info.errors,function(i,e){$errorList.append('<li>'+e+'</li>');return false});$element.last().parent().after($errorList)}}});$('.form-errors').fadeIn(500)}}})})})}})(jQuery);
