$(document).ready(function(){
	$('.archives li a').click(function(){
		$(this).parent().children('ul').toggle();
	})	
})

