/*
SCRIPTS
Eric Grossnickle
January 2008
*/

function switcher (tab) {
	$('switcher').className = tab;
	$$('.tab').each(
		function(tab) {
			tab.hide();
		});
	$(tab).show();
	
	destRSS = $$('#switcher li.rss a').first();
	sourceRSS = $$('#'+tab+' h3 a.rss').first();
	
	destRSS.writeAttribute('href', sourceRSS.readAttribute('href'));
	destRSS.writeAttribute('title', sourceRSS.readAttribute('title'));
}