﻿/* ----------------------------- flatHeights ----------------------------- */
jQuery.event.add(window,"load",function(){
$('.link_group > li').flatHeights();
});
/* ----------------------------- replace_img ----------------------------- */
$(function(){
$('.header_logo_co > a').replace_img('/common/images/header/header_logo_co.gif', 118, 61);
$('.header_logo_ca > a').replace_img('/common/images/header/header_logo_ca.gif', 274, 61);
});
/* ----------------------------- text display none ----------------------------- */
$(function(){
$('.hide_description').css("display","none");
$('.hide_keyword').css("display","none");
});
/* ----------------------------- 並びマージン ----------------------------- */
$(function(){
	$length = $('.t_box').length;
	for ($n = 0; $n < $length; $n++)
	{
		if (($n + 1) % 4 == 0)
		{
			$('.t_box').eq($n).css("padding-right", 0);
		}
	}
});
