/*
 * Run this when the Dom is ready
 */
$(function(){
	
	$("li.year, li.year_selected").toggle(function(){
		/* open */
		$(this).find('ul.months').show();
	},function(){
		/* close */
		$(this).find('ul.months').hide();
	});
	
	$('ul.months').click(function(e){
		e.stopPropagation();
	});


});
