window.addEvent('domready', function() {
	$$('.mw_form_vote').each(function(el){
		$(el.id).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"){
					MWAlert.alert('<h1>Köszönjük!</h1><p>Szavazatát elmentettük!</p>');
					this.fancyShow();
				}else{
					MWAlert.alert('<h1>'+result.title+'</h1><p>'+result.error+'</p>');
					this.fancyShow();
				}
			}.bind(this)});
			this.send();
   		 });	
	});
});