function showMore(idnew , idact){
	var obj1 = document.getElementById(idnew);//.style.display = "block";
	var obj2 = document.getElementById(idact);//.style.display = "none";
	
	obj2.style.overflow = "hidden";
	obj1.style.overflow = "hidden";
	

	
	var transp = new Effect.Opacity(obj1, {duration:0,  to:0.0 });
	//obj1.setStyle({opacity:'0.0'});
	//transp.update(1);
	Element.setOpacity(obj1,0);

	obj1.style.position = "absolute";
	obj1.style.display = "block";
	
	var scale = obj1.offsetHeight/obj2.offsetHeight;
	obj1.style.height = obj2.offsetHeight+"px";
	
	obj1.style.position = "relative";
	obj1.style.zIndex = 2;
	obj2.style.position = "absolute";
	obj2.style.top = 0;
	obj2.style.zIndex = 1;
	
	
	new Effect.Scale(obj1,scale*100,{scaleX:false,scaleContent:false,duration:1.5});
	
	new Effect.Opacity(obj2, {duration:1.5,  to:0.0 });
	new Effect.Opacity(obj1, {duration:1.5,  to:1.0, queue: 'end'});
}