$(document).ready(function(){
	$("#monthD").change(updateThumbs);
	$("#yearD").change(updateMonths);
	
	function updateMonths(){
		var yearV = $("#yearD").val();
		
		$.post("/messages/monthsasweeks", {year: yearV}, 
			function(data){
				$("#monthD").replaceWith(data);
				$("#monthD").change(updateThumbs);
				updateThumbs();
			}
		);
		
	}

	function updateThumbs() {
		var monthV = $("#monthD").val();
		var yearV = $("#yearD").val();

		$.post("/messages/thumbs", { month: monthV, year: yearV}, 
			function(data){
				$("#trans_art_holder").html(data);
			}
		);
	}
});




