$(document).ready(function(){
	$("ul li:last-child").addClass('last');
	$("article:last-child").addClass('last');
	$(".box:last-child").addClass('last');
	$("article.slider div.content").hide();
	
	$('article.slider header').click(function() {
        $(this).toggleClass('clicked');
        $(this).next('div').slideToggle('fast');
	})
	
});
