
YAHOO.CamelFW.FW.prototype.ShowNewsBody = function( iId ) {
	
	// Show body element
	var el = document.getElementById( "item_" + iId + "_body" );
	el.style.visibility = "visible";
	el.style.height = "auto";
	
	// Hide read more link
	el = document.getElementById( "item_" + iId + "_foot" );
	el.style.visibility = "hidden";
	el.style.height = "0px";
	
	// Ajust size of parent element
	el = YAHOO.util.Dom.getAncestorByClassName( el, "News" );
	el.style.visibility = "hidden";
	el.style.height = "0px";
	el.style.height = "auto";
	el.style.backgroundColor = "#cecece";
	el.style.visibility = "visible";
}

