try {
if (!cllc.exists) { throw "cllcObjUndefined"; }

cllc.news = {
	init: function() {
		$(document).ready(function() {
			var news_archive = $('#news_archive')
			news_archive.show();
			
			news_archive.find('h4').click(function(e) {
				var $this = $(this);
				e.preventDefault();
				
				if (!$this.hasClass('current')) {
					news_archive.find('h4.current').removeClass('current');
					$this.addClass('current');

					news_archive.find('li.year ul').hide();
					$this.closest("li").find("ul:first").show();
					
					$this.parent().find('h5:first a').click();
				}
			});
			
			news_archive.find('h5 a').click(function(e) {
				var $this = $(this);
				e.preventDefault();
				
				if (!$this.parent().hasClass('current')) {
					news_archive.find('h5.current').removeClass('current');
					$this.parent().addClass('current');

					news_archive.find('li.month ul').hide();
					$this.closest("li").find("ul").show();
				}
			});
			
			news_archive.find('h4:first').click();
		});
	}
};

} catch(e) { cllc.standard_error_handler(e); }

$(cllc.news.init);