$(document).ready(function() {
	if($(".selectlink").size()>0) {
		$(".selectlink").change(
							   function(){
								   location.href = $(this).val();
								});
	}
});

function setSelected(id) {
	//<p id="archiveTtl"></p>に表示中のアーカイブページ（年月）が入っている
	var id = 'op' + $('#archiveTtl').text();
	$('#archiveTtl').remove();
	var elm = document.getElementById(id);
	$('.selectlink > option').removeAttr('selected');
	$(elm).attr('selected','selected');
}
