$(document).ready(function() {
 	/* カテゴリーアコーディオン */
 	$(".subNavi").prepend('<a href="JavaScript:void(0)" class="icon"><img src="http://www.sqex-ee.jp/images/icon_open.gif" border="0" width="11" height="16" alt="OPEN" /></a>');
 	$(".subNaviZero").prepend('<img src="http://www.sqex-ee.jp/images/icon_point.gif" border="0" width="11" height="16" alt="POINT" />');
	$(".subNavi > ul").hide();
        $(".subNavi > dl").hide();
        $(".icon").click(function() {
		if ($("img",$(this)).attr("alt")=="OPEN") {
			$("img",$(this)).attr("src", "http://www.sqex-ee.jp/images/icon_close.gif");
			$("img",$(this)).attr("alt", "CLOSE");
		} else {
			$("img",$(this)).attr("src", "http://www.sqex-ee.jp/images/icon_open.gif");
			$("img",$(this)).attr("alt", "OPEN");
		}
		$("ul", $(this).parent()).slideToggle("normal"); //”slow”,”normal”,”fast” or "ミリ秒"
                $("dl", $(this).parent()).slideToggle("normal"); //”slow”,”normal”,”fast” or "ミリ秒"
	});
	/* メニューロールオーバー */
	$("#headerNavi a img").not('[src*="_on."]').each(function() {
		var img = $(this).attr("src");
		var rover = img.substr(0, img.lastIndexOf('.'))+"_over"+img.substring(img.lastIndexOf('.'));
		$("<img>").attr("src", rover);
		$(this).hover(function() {
			$(this).attr("src", rover);
		}, function() {
			$(this).attr("src", img);
		});
	});
	/* 画像角丸 */
	$(".round_image").each(function() {
		$(this).prepend('<b style="tl"></b><b class="tr"></b>');
		$(this).append('<b class="bl"></b><b class="br"></b>');
	});
});


