	/*--------------------------------
	PARENT LISTING FUNCTIONS
	---------------------------------*/
	//new Effect.toggle($(\'expandrow'+id+'\'),\'appear\',{duration:.75});
	
	
	function _expandDetails(id){
		//var sDivOuter = 'expandarea_'+id;
		//var sDivInner = 'detailsarea_'+id;
		
		var sDivOuter = id;
		var sDivInner = id+"2";
		
		//xShow(sDivOuter);
		var curH = xHeight(sDivInner);
		var destH = (curH == 0)? curH : 0;
		/*
		if(type == "feature"){
			var e = document.getElementById("link"+id);
				e.className = (xHeight(sDivOuter) < curH )? "close" :"moreinfo" ;
				//alert("link"+id+" ,destH="+destH+", curH="+curH+", className="+e.className);
		};	
	*/
		
			fxExpand = new fx.Height(sDivOuter, {duration: 850 });
			//xShow = new fx.Opacity(sDivInner, {duration: 500 })
	
			fxExpand.toggle(curH, destH);//custom

	}
	
	