
function group_rollover(id)
{
	if (id != 'spun_main')
	{
		document.getElementById('spun_main').style.backgroundPosition = '0 0';
		document.getElementById('spun_brand_overview').style.color = '#ccc';
	}
	if (id != 'frank_main')
	{
		document.getElementById('frank_main').style.backgroundPosition = '0 0';
		document.getElementById('frank_brand_overview').style.color = '#ccc';
	}
	if (id != 'fwb_main')
	{
		document.getElementById('fwb_main').style.backgroundPosition = '0 0';
		document.getElementById('fwb_brand_overview').style.color = '#ccc';
	}
	if (id != 'mathers_main')
	{
		document.getElementById('mathers_main').style.backgroundPosition = '0 0';
		document.getElementById('mathers_brand_overview').style.color = '#ccc';
	}
	if (id != 'westley_main')
	{
		document.getElementById('westley_main').style.backgroundPosition = '0 0';
		document.getElementById('westley_brand_overview').style.color = '#ccc';
	}
	
	if (id == 'spun_main')
		document.getElementById('spun_title').style.borderBottom = '3px solid #0033CC';
	else if (id == 'frank_main')
		document.getElementById('frank_title').style.borderBottom = '3px solid #CC0000';
	else if (id == 'fwb_main')
		document.getElementById('fwb_title').style.borderBottom = '3px solid #CC0000';
	else if (id == 'mathers_main')
		document.getElementById('mathers_title').style.borderBottom = '3px solid #CC0000';
	else if (id == 'westley_main')
		document.getElementById('westley_title').style.borderBottom = '3px solid #0033CC';
}

function group_clear()
{
	document.getElementById('spun_main').style.backgroundPosition = '0 -220px';
	document.getElementById('frank_main').style.backgroundPosition = '0 -220px';
	document.getElementById('fwb_main').style.backgroundPosition = '0 -220px';
	document.getElementById('westley_main').style.backgroundPosition = '0 -220px';
	document.getElementById('mathers_main').style.backgroundPosition = '0 -220px';

	document.getElementById('spun_title').style.borderBottom = '3px solid #ccc';
	document.getElementById('frank_title').style.borderBottom = '3px solid #ccc';
	document.getElementById('fwb_title').style.borderBottom = '3px solid #ccc';
	document.getElementById('westley_title').style.borderBottom = '3px solid #ccc';
	document.getElementById('mathers_title').style.borderBottom = '3px solid #ccc';
	
	document.getElementById('spun_brand_overview').style.color = '#000';
	document.getElementById('frank_brand_overview').style.color = '#000';
	document.getElementById('fwb_brand_overview').style.color = '#000';
	document.getElementById('westley_brand_overview').style.color = '#000';
	document.getElementById('mathers_brand_overview').style.color = '#000';

}

