function bindTopMost( id) {
	var obj = document.getElementById( id);
	if ( obj) {
		obj.className = 'showFew';
		var a = document.createElement('a');
		a.href = '#Show More';
		a.className = 'showMoreControl';
		a.innerHTML = 'More >>';
		a.onclick = function(e){
			this.parentNode.className = 'showMore';
			return false;
		};
		obj.appendChild( a);
	}
}
