jQuery(document).ready(function(){
	jQuery('#twitter-mentions').accordion({
  	active: false,
		autoheight: false,
		alwaysOpen: false,
		header: '#twitter-mentions-toggle'
	});
	jQuery('#design-projects').accordion({
		autoheight: false,
		alwaysOpen: true,
		header: '.toggle'
	});
	$("#article-nav li").click(function(){
	    $("#article-nav li").removeClass("current").addClass("");
	    $(this).addClass("current");
	});
});