$(document).ready(function() {
	/*$("select#year_change").change(function(){
		var year_index
		year_index = $("#year_change").val();
		$('.text_body').css('height','600px');
		$('.news_box').fadeOut(1000);
		$('.news_box').css('display','none');
		$('.year'+year_index+'').fadeIn(1000,function(){
		$('.text_body').css('height','auto');
	});

        $('.year'+year_index+'').css('display','block');
	});*/

        $("#link_select select").change(function(){
		var link_index
		link_index = $("#link_select select").val();
                window.open(link_index, "_blank");
		//window.location.href = link_index;
	});

});

