$(function(){
	//$('.months').hide();
	$('.items').hide();
	
	$('.years>li>.cat').toggle(
		function(){
			$(this).parent().children('.months').show();
		},
		function(){
			$(this).parent().children('.months').hide();
	});
	
	$('.months>li>.cat').toggle(
		function(){
			$(this).parent().children('.items').show();
		},
		function(){
			$(this).parent().children('.items').hide();
	});
	
	$('input.comment').click(function(){
		var comments = $('textarea.comment').val();
		var name = $('input.commentname').val();
		var id = $('input.commentid').val();
		$('div.addcomment').load("blogcomment.php",{'comment[]':[comments,name,id]});
	});
	
});