window.addEvent('domready', function() {
		var el = $('myElement');
	var anotherEl = $('anotherElement');
	
	// Again we are able to create a morph instance
	// Or we just use Element.morph
	/*$('acepto1').addEvent('mouseenter', function(e) {
		e.stop();
		// Changes the element's style to .myClass defined in the CSS
		anotherEl.morph('.myClass');
	});*/
	
	
		// You need the same selector defined in the CSS-File
		
	
});

function remove(x){
	var divBaciar = $('tabComent' + x );
	divBaciar.empty();
}
 function despligacoment(x){
	 var anotherEl = $('coment' + x);
	 var despliegaDiv = $ ('anotherElement' + x);
	 anotherEl.morph('.myClass');
	 
		 $(despliegaDiv).addEvent('mouseleave', function(e) {
			e.stop();
			anotherEl.morph('div.contenedor');
		 });
	 }
