/**
 * EXT:mfarvatoextendttnews/res/js/news.js
 * @author Johan Prawiro <prawiro@medienfabrik.de>
 */

$(document).ready(function() {
	$('.news-section-year-label a.handle').click(function(e) {
		e.preventDefault();
		// toggle year
		$(this).closest('.news-section-year').find('.news-section-year-content').slideToggle('fast', function() {
			$(this).siblings('.news-section-year-label').toggleClass('active');
		});
	});

	$('.news-section-month-label a.handle').click(function(e) {
		e.preventDefault();
		// toggle month
		$(this).closest('.news-section-month').find('.news-latest-container').slideToggle('fast', function() {
			$(this).siblings('.news-section-month-label').toggleClass('active');
		});
	});
	
	// open current year and month (first!)
	$('.news-section-year-content').eq(0).show('fast', function () { $(this).siblings('.news-section-year-label').addClass('active');$(this).siblings('.news-section-year-content').show(); }).find('.news-section-month .news-latest-container').eq(0).show('fast', function () { $(this).siblings('.news-section-month-label').addClass('active'); });

// end document ready
});

