window.addEvent('load', function(){
	var getNotify = function() {
		if (document.id('notifySpace') != null) {
			var act = new Request({
				url: 'includes/action.php?action=getnotify',
				onComplete: function(response){
					switch (response) {
						case 'false':
							document.id('menuNotifyIcon').setStyle('background-image', 'url(\'../img/menuNotifyIcon.png\')')
							document.id('notifySpace').set('html', '<li><span>Nessun avviso</span></li>');
							break;
						default:
							document.id('menuNotifyIcon').setStyle('background-image', 'url(\'../img/menuNotifyIconUp.png\')')
							document.id('notifySpace').set('html', response);
							break;
					}
				}
			}).send();
		}
	};
	getNotify();
	getNotify.periodical(10000);
});
