$('.articles li:last').addClass('last');

// Hide Archives
$('.articles li.archived').hide();

$('#archives li a').click(function(){
	$('.articles li').hide();
	$('#archives li a').removeClass('current');
	// Current Year
	if ($(this).attr('id') == 'show-2012') {
		$('.articles h2').hide();
		$('.articles h2#recent').show();
		$('.articles li.y2012').fadeIn();
	} else if ($(this).attr('id') == 'show-2011') {
		$('.articles h2').hide();
		$('.articles h2#recent').show();
		$('.articles li.y2011').fadeIn();
	} else if ($(this).attr('id') == 'show-2010') {
		$('.articles h2').hide();
		$('.articles h2#recent').show();
		$('.articles li.y2010').fadeIn();
	} else if ($(this).attr('id') == 'show-2009') {
		$('.articles h2').hide();
		$('.articles h2#y2009').show();
		$('.articles li.y2009').fadeIn();
	} else if ($(this).attr('id') == 'show-2008') {
		$('.articles h2').hide();
		$('.articles h2#y2008').show();
		$('.articles li.y2008').fadeIn();
	} else if ($(this).attr('id') == 'show-2007') {
		$('.articles h2').hide();
		$('.articles h2#y2007').show();
		$('.articles li.y2007').fadeIn();
	} else if ($(this).attr('id') == 'show-2006') {
		$('.articles h2').hide();
		$('.articles h2#y2006').show();
		$('.articles li.y2006').fadeIn();
	} else if ($(this).attr('id') == 'show-2005') {
		$('.articles h2').hide();
		$('.articles h2#y2005').show();
		$('.articles li.y2005').fadeIn();
	} else if ($(this).attr('id') == 'show-2004') {
		$('.articles h2').hide();
		$('.articles h2#y2004').show();
		$('.articles li.y2004').fadeIn();
	} else if ($(this).attr('id') == 'show-2003') {
		$('.articles h2').hide();
		$('.articles h2#y2003').show();
		$('.articles li.y2003').fadeIn();
	}
	$(this).addClass('current');
	return false;
});

$('a').attr('target','_parent');