window.addEvent('domready', function(){

	$$('#hoverer p ').set('opacity', 0.4).addEvents({

		mouseenter: function(){
			//this.morph({
			this.getParent().getElements('p').morph({
				'opacity': 1,	
				//'background-color': '#c6d880'		
			});

		},
		mouseleave: function(){
			 this.getParent().getElements('p').morph({
			//this.morph({
				opacity: 0.4,
			});
		}
		
	});

});