$(document).ready(function() {
	
	$(".year,.month").click(function(){
		$(this).parent().toggleClass("off");
		return false;
	});
	
});