var MsgBar;

window.addEvent('load', function(){
	MsgBar = new MessageBar('msgBar', 'msgBarText', 'msgBarButton');
	
	document.id('form-login').addEvent('submit', function(e){
        e.stop();											
        this.set('send', {
            onComplete: function(response){
				var msg = '';
				switch (response)
				{
					case '0':
						msg = 'L\'indirizzo email inserito non &#232; registrato.';
						MsgBar.show(msg, 'msgError');
						break;
					case '1':
						msg = 'L\'account non &#232; attivo, clicca sul link che ti &#232; stato spedito all\'indirizzo email specificato per attivarlo.';
						MsgBar.show(msg, 'msgError');
	                    break;
					case '2':                                                
	                    msg = 'La password inserita &#232; sbagliata.';
						MsgBar.show(msg, 'msgError');
						break;
	                case 'true':
						location.href = 'index.php?page=gallery';
						break;
				}
        	}
		});
		this.send();
    });
});
