$(document).ready(function() {
	$('#navigation .parent').each(function() {
		if ($(this).find('li').length < 1) {
			$(this).removeClass('parent');
		}
	});
	
	var acc = $('#interviews ul.interviews');
	
	$(acc).find('li ul').hide();
	$(acc).children('li').children('a').click(function() {
		if (!$(this).parent().hasClass('open')) {
			$(acc).find('li.open').removeClass('open');
			$(this).parent().addClass('open');
			$(acc).find('li ul').slideUp('fast');
			$(acc).find('li.open ul').slideDown('normal');
		}
			
		return false;
	});
	
	$('.article-list .list-item:last').addClass('last');
	
	//old and new
	$('.old-and-new .new').hide();
	
	$('.old-and-new .on-toggle').toggle(function() {
		$(this).html('View Old').parent().parent().find('.image .new').fadeIn();
		return false;
	}, function() {
		$(this).html('View New').parent().parent().find('.image .new').fadeOut();
		return false;
	});
});
