//when the dom is ready...
window.addEvent('domready', function() {
	$('showNotificationsPopup').addEvents( {
			click: function() {	$('notificationsPopup').setStyle('display', 'block');	}
		}
	);
	
	$('hideNotificationsPopup').addEvents( {
			click: function() {	$('notificationsPopup').setStyle('display', 'none');	}
		}
	);
});
/*
jQuery(document).ready( function($) {
	$('#showNotificationsPopup').click( function() {
		$('#notificationsPopup').show().find('#hideNotificationsPopup').click( function() {
			$('#notificationsPopup').hide();
		});
	});
});
*/
