/**
* Displays the selected Service Page view
*
* @author      		Matt Gifford
* @copyright			2006 Timeshifting Interactive Limited
* @version        	1.0
*
* @param			service			The service view to display
*/
function displayService(service)
	{
	switch (service)
		{
		case 'clinicMeeting':
			var id = 'servicesBodyMeeting';
			break;

		case 'clinicSetting':
		case 'consultSetting':
			var id = 'servicesBodySetting';
			break;

		case 'clinicEvaluation':
		case 'consultEvaluation':
			var id = 'servicesBodyEvaluation';
			break;

		case 'clinicApproach':
		case 'consultApproach':
			var id = 'servicesBodyApproach';
			break;

		case 'clinicTeam':
		case 'consultTeam':
			var id = 'servicesBodyTeam';
			break;
		
		case 'consultTraining':
			var id = 'servicesBodyTraining';
			break;
		

		case 'consultRecruiting':
			var id = 'servicesBodyRecruiting';
			break;

		default:
			return;
		}
	
	// Hide the all the content divs
	var divs = document.getElementById('servicesBody').getElementsByTagName('div');
	for (var x = 0; x < divs.length; x++)
		{
		divs[x].style.display = 'none';
		}

	// Display the selected view
	document.getElementById(id).style.display = 'block';
	document.getElementById('servicesBackground').className = service;
	}