window.addEvent('domready', function() {
 
	// FORM
	if($('mw_form_comment')){
		$('mw_form_comment').addEvent('submit', function(e) {
			e.stop();
			//form elrejt
			this.fancyHide();
			//loading 
			var loading = new Element('div').addClass('ajax-loading').inject(this,'after');
			this.set('send', {onComplete: function(response) { 
				var result = JSON.decode(response);
				loading.fancyHide();
				if(result.success=="true"){
					location.reload(true);
				}else{
					MWAlert.alert(result.title,result.error);
				}
				$('mw_form_comment').fancyShow();
			}});
			this.send();
   		 });	
	}
 
});
