var videoBar;

//
// ページ読み込み時
//
jQuery(document).ready(function(){
	//
	// <a rel="trp_blank">の時は別ウィンドウで表示させる
	//
	jQuery("a").each(function(){
		if(jQuery(this).attr("rel") == "trp_blank") {
			jQuery(this).attr("target", "_blank");
		}
	});

});

//
// Google VideoBarの更新
//
function trp_Video_Search(sch_word) {
	var reg;

	if(! jQuery("#id-word-inc").attr("checked")) {
		reg = new RegExp(jQuery("#id-word-inc").val() + " ", "ig");
		sch_word = sch_word.replace(reg, "");
	}

	videoBar.execute(sch_word);

}
