window.addEvent('domready', function() {
	if($('mw_form_login')){
		$('mw_form_login').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"){
					window.location=result.redirect;
				}else{
					MWAlert.alert('<h1>'+result.title+'</h1><p>'+result.error+'</p>');
					$('mw_form_login').fancyShow();
				}
			}});
			this.send();
   		 });	
	}
});