$(function(){
	/*汎用*/

	/*footer-----copyright*/
	$("#copyright").text("Copyright(C)2004-2011 CHUKYO TV BROADCASTING Co.,Ltd");

	



	/*-------*/
	//Eventの設定
	/*-------*/
	//a.hoversはcss background-positionによる共通ロールオーバーアクション
	$("a.hovers").hover(
		function(){
			$(this).css("backgroundPosition","bottom")
		}
		,function(){
			$(this).css("backgroundPosition","top")
		}
	);
	//a.Linkblankはポップアップウィンドウで表示する
	$("a.Linkblank").bind("click", function(event) {
		window.open($(this).attr("href"));
		event.preventDefault();
		event.stopPropagation();
		return false;
	});



});

