// 検索結果出力のルート
function search_result() {
  expand_click();
	pagenavi_events();
}

// 動画タイトルのクリック範囲拡張
function expand_click() {
  var target = jQuery("#search-result").find("div.title");
	jQuery(target).hover(
		function(){
			jQuery(this).css("cursor", "pointer")
			.find("a").css("text-decoration", "underline");
		},
		function(){
			jQuery(this).css("cursor", "")
			.find("a").css("text-decoration", "none");
		}
	)
	.click(
		function(){
			location.href = jQuery(this).find("a").attr("href");
		}
	);
}

// ページナビのイベント
function pagenavi_events() {
	var buttons = jQuery("#pagenavi").find("span");
	jQuery(buttons).hover(
		function(){
			jQuery(this).find("a").css("text-decoration", "underline");
		},
		function(){
			jQuery(this).find("a").css("text-decoration", "none");
		}
	)
	.not(".current-page").click(function(){
		location.href = jQuery(this).find("a").attr("href");
	});
}

