
$(function() {
					
	/* Featured Rotation */
			
	var featuredContainer = $('div#featured-post > div');
	featuredContainer.hide().filter(':first').show();
		
	$('div#featured-navigation > a').click(function () {
		
		featuredContainer.hide();
		featuredContainer.filter(this.hash).show();
		$('div#featured-navigation > a').removeClass('selected');
		$(this).addClass('selected');
		return false;
	
	}).filter(':first').click();
				
});


