function showDescription(section,action)
{

	if(section=='professional')
	{
		if(action==1)
		{
			document.getElementById('description').innerHTML = "<h6 style='color:white'><li>Stationary Engineering</li><li>Continuing Education</li><li>Facilities Maintenance</li></h6>";
			document.getElementById('professional').style.background="#f2f7c0";
			document.getElementById('professional').style.color="#769748";
		}
		else
		{
			document.getElementById('description').innerHTML = '';
			document.getElementById('professional').style.background="#769748";
			document.getElementById('professional').style.color="white";
		}
	}
	else if(section=='energy')
	{
		if(action==1)
		{
			document.getElementById('description').innerHTML = "<h6 style='color:white'>Sure, it’s the buzz word but it’s amazing how many organizations fail to understand how it relates to the whole facility.<br><br>What do you do next when all the low hanging fruit have been picked?</h6>";
			document.getElementById('energy').style.background="#f2f7c0";
			document.getElementById('energy').style.color="#769748";
		}
		else
		{
			document.getElementById('description').innerHTML = '';
			document.getElementById('energy').style.background="#769748";
			document.getElementById('energy').style.color="white";
		}
	}
	else if(section=='facilities')
	{
		if(action==1)
		{
			document.getElementById('description').innerHTML = "<h6 style='color:white'>Who is your competition and how do you measure up? Minimizing Operational risks are critical. Remember, it’s still a business.<br><br>Can you afford not to get your money’s worth? </h6>";
			document.getElementById('facilities').style.background="#f2f7c0";
			document.getElementById('facilities').style.color="#769748";
		}
		else
		{
			document.getElementById('description').innerHTML = '';
			document.getElementById('facilities').style.background="#769748";
			document.getElementById('facilities').style.color="white";
		}
	}
	else if(section=='project')
	{
		if(action==1)
		{
			document.getElementById('description').innerHTML = "<h6 style='color:white'>When was the last time your facilities support staff said “thanks” after they took ownership of the project?<br><br>Who represents the owners best interest?</h6>";
			document.getElementById('project').style.background="#f2f7c0";
			document.getElementById('project').style.color="#769748";
		}
		else
		{
			document.getElementById('description').innerHTML = '';
			document.getElementById('project').style.background="#769748";
			document.getElementById('project').style.color="white";
		}
	}
}