$(document).ready(function() {
	$('.feedGroup').hide();
	$('h1.pageHeading').after('<h2>Advertising Age</h2><div id="feeds"></div>');
	$('div#advertising_age.feedGroup a').gFeed( { target: '#feeds', tabs: true, max: 20 } );
	$('#feed_titles a:eq(0)').css({
		backgroundColor: '#FFF',
		color: '#000',
		backgroundImage: 'url(images/subnav_go.gif)',
		backgroundRepeat: 'no-repeat',
		backgroundPosition: '8px 1.5px'
	});
	
	$('#feed_titles a').click(function () {
		$('.feedGroup').hide();
		$('h2').remove();
		$('div#feeds').remove();
		$('#feed_titles a').removeAttr("style");
										
		var $thisAnchor = $(this).attr('href');						//get anchor form href
		var $feedGroup = 'div' + $thisAnchor + '.feedGroup a';		//find group of feeds to process
		var feedGroupHeading = $(this).text();						//get link text
				
		$('h1.pageHeading').after('<h2>' + feedGroupHeading + '</h2><div id="feeds"></div>');
		
		$(this).css({
			backgroundColor: '#FFF',
			color: '#000',
			backgroundImage: 'url(images/subnav_go.gif)',
			backgroundRepeat: 'no-repeat',
			backgroundPosition: '8px 1.5px'
		});
		
		$($feedGroup).gFeed( { target: '#feeds', tabs: true, max: 20 } );
		return false
	});
}); 