/*
Global Presence Content Panel
*/
function ContentPanels()
{
	// Scan for "imcoming" content panel request; if none, revert to first.
	if($('#tertiary li a[href="'+ location.hash +'"]').size() > 0)
	{
		ChangePanel(location.hash.substr(1));
	}
	else
	{
		$('div.contentpanel:gt(0)').hide();
		$('div.contentpanel[@id="contentpanel-tab1"]').show();

	}

	function ChangePanel(tab)
	{
		$('div.contentpanel').hide();
		$('div.contentpanel[id="contentpanel-' + tab + '"]').show();
		$('#tertiary li a').removeClass('lit');
		$('#tertiary li a[href="#'+tab+'"]').addClass('lit');
	}

	// Setup click event for each tab.
	$('#tertiary li a').click(function(e){
		ChangePanel($(this).attr('href').substr(1));
		return false;
	});
}
