// JavaScript Document

function togglePracticeInfo(id) {
	
	var practiceInfo = document.getElementById('practiceInfo' + id);
	var practiceInfoSwitch = document.getElementById('practiceInfoSwitch' + id);
	
	if (practiceInfo.style.display == 'none') {
		
		practiceInfo.style.display = '';
		practiceInfoSwitch.innerHTML = 'Close -';
			
	} else if (practiceInfo.style.display == '') {
		
		practiceInfo.style.display = 'none';
		practiceInfoSwitch.innerHTML = 'Read More +';
			
	}
	
}

