
// landing page attorney spotlight swapper
function swapContent(showItem, itemCount) {
	
	//hide all featured attorneys
	for(i=0; i<itemCount; i++) {
		var hideContent = 'featureBio_'+ i;
		document.getElementById(hideContent).className="hide";
	}
	
	//display correct featured attorney
	var showContent = 'featureBio_' + showItem;
	document.getElementById(showContent).className="show";
	
}