// トヨタ財団 CSS 調整用js

jq$ = jQuery.noConflict();

//表制作KIT用

jq$(function(){
	//tbledit_　に一致するclassを持つtableタグの幅を100%にする
		   jq$("table[class^='tbledit_']").css('width','100%');

	//.tbledit_normal（シンプルな枠線のみ）


	//.tbledit_bg_a（thの背景がグレー）
		   jq$('table.tbledit_bg_a th').css('backgroundColor','#e9e9e9');

	//.tbledit_bg_b（thの背景がベージュ）
		   jq$('table.tbledit_bg_b th').css('backgroundColor','#efe9c6');

//以下表制作KIT実験

	//交互にtrの背景色を変える
		   jq$('table.tbledit_bg_c tr:even').css('backgroundColor','#dddddd');
		   jq$('table.tbledit_bg_c tr:odd').css('backgroundColor','#efe9c6');

	//thに背景画像を使用
		   jq$('table.tbledit_bg_d th').css('background',"url('/shared/img/bg_h2.gif')");



	//最初のtrのth背景色
		   jq$('table.tbledit_bg_e tr:first-child th').css('backgroundColor','red');
	//tableタグのtrの最初のtd背景色
		   jq$('table.tbledit_bg_e td:first-child').css('backgroundColor','green');



//パンくずリスト調整用
	//subtitleを隠す
		   jq$('p#hiddentitle').css('display','none');
		   
		   
		   });

