function init() {
	Event.observe(showNewNews, 'click', showNewNews);
	Event.observe(showEditNews, 'click', showEditNews);
	Event.observe(agendaEventShow, 'mouseOver', agendaEventShow);
}



function agendaEventShow(eventBox) {
	new Effect.Morph(eventBox, {
 		 	style: 'background:#CCCCFF;', // CSS Properties
  			duration: 0.4// Core Effect properties
	});
	/*$(eventBox).setStyle({background-color:'#F00'});*/
}

function agendaEventHide(eventBox) {
	new Effect.Morph(eventBox, {
 		 	style: 'background:#FFF;', // CSS Properties
  			duration: 0.4 // Core Effect properties
	});
}


function show_me(id) {

	if ($(id).getStyle('display') == "none") { 	new Effect.Appear(id, {duration:1.0}); }
	else { 	new Effect.BlindUp(id, {duration:1.0});}
}


