
	function getNodeContent( node )
	{
		if( node.hasChildNodes() )
			return node.firstChild.data;
		return '';
	}
