$(document).ready(function(){
	
	
	$("#more-info").fancybox({ 'width':400, 'height':245, 'autoDimensions':false });
	

	$(".gb-select select").css("opacity", 0).change(function(){
		$(this).parent().find("div").text(this.options[this.options.selectedIndex].text);

		location.href = $("#filter-form").attr("action") + $("#year").val() + "/" + $("#month").val() + "/";
	}).each(function(){
		$(this).parent().find("div").text(this.options[this.options.selectedIndex].text);
	});
});
