$(document).ready(function(){

<!-- マウスオーバーでテーブルの色を変える -->

	$(".textcss tr").mouseover(function(){
		$(this).addClass("over");
	}).mouseout(function(){
		$(this).removeClass("over");
	});

<!-- テーブルを一列違いに色違い -->

$(".textcss tr:even").addClass("even");
});

<!-- プレスインフォのHIDE-SHOW -->

function showsub(){
$(".hide").addClass("show");
$(".df_show").removeClass("show");
$(".df_show").addClass("hide");
}

function hidesub(){
$(".show").removeClass("show");
$(".df_show").removeClass("hide");
$(".df_show").addClass("show");
}