$(document).ready(function() {
	$('ul#filter a').click(function() {
		$("div#content-container").animate({ height: "100%" }, "50000")
		$(this).css('outline','none');
		$('ul#filter .current').removeClass('current');
		$(this).parent().addClass('current');
		
		var filterVal = $(this).text().toLowerCase().replace(' ','-');
				
		if(filterVal == 'all') {
			$('ul#archives li.hidden').fadeIn('slow').removeClass('hidden');
		} else {
			
			$('ul#archives li').each(function() {
				if(!$(this).hasClass(filterVal)) {
					$(this).slideUp('50000').fadeOut('slow').addClass('hidden');
					
				} else {
					$(this).slideDown('50000').fadeIn('slow').removeClass('hidden');
					
				}
			});
		}
		
		return false;
	});
	
	$('ul#archives li').hover(function() {
		$(this).stop().animate({ height: "275px" }, "50000");
	},
	function() {
		$(this).stop().animate({ height: "50px" }, "50000");
	});
});