/* Gorrie Regan */

function feature(group)
{

	var hdr = '';
	var txt = '';
	
	switch(group)
	{
		case 'payroll' :
			hdr = '<a href="payroll-problem-solving.html">On Gorrie-Regan&#8217;s<br />Payroll Services</a>';
			txt = '<a href="payroll-problem-solving.html" class="lnkarrow">&#8220;If you ask me what I think Gorrie Regan is best at, I&#8217;d say it&#8217;s problem solving&#8221; &rarr;</a>';
		break;
		case 'parking' :
			hdr = '<a href="parking-excellent-service.html">On Gorrie-Regan&#8217;s<br />Service</a>';
			txt = '<a href="parking-excellent-service.html" class="lnkarrow">&#8220;The deciding factor for us was service&#8221; &rarr;</a>';
		break;
		case 'time' :
			hdr = '<a href="time-and-attendance-excellent-service.html">On Choosing Gorrie-Regan</a>';
			txt = '<a href="time-and-attendance-excellent-service.html" class="lnkarrow">&#8220;Gorrie-Regan made the switch as painless as possible.&#8221; &rarr;</a>';
		break;
	}

	document.getElementById('feature').setAttribute('class','cs-'+group);
	document.getElementById('cs-hdr').innerHTML = hdr;
	document.getElementById('cs-txt').innerHTML = txt;
}