jQuery(function() {
	
	/* 新着情報最終要素ドットライン消去 */
	jQuery("#news dl dd:last").css("background", "none");
	
	/* フッターナビにパイプ挿入 */
	jQuery("#footer_navi li").not('li:last-child').after(" | ");
	
	/* ページ内ローカルナビにパイプ挿入 */
	jQuery(".local_navi li").not('li:last-child').after(" | ");
	
	/* ゼブラテーブル */
	jQuery("#zebra_table tr:even").css("background", "#defde0");
	
	/* 施工事例リフォーム・太陽光パネルカテゴリ事例リスト奇数行clear挿入 */
	jQuery(".list li:even").css("clear","both");
	
});