// sample loop のリンク用。TR全体をリンクする
$(function(){
  $(".sample_loop td").click(function () {
    var title_link = $(this).parent().attr("title");
    location.href = title_link;
  });
});

function nowdatetest(){
	now = new Date();
	str = now.getFullYear()+"年";
	str+= now.getMonth()+1+"月";
	str+= now.getDate()+"日";
	document.write(str);
}




