

//グローバルナビゲーション
$(function() {
	var url = document.URL.split('/');
	$('#gNavi li').each(function(){
		var liId = $(this).attr("id");
		$(this).removeClass("current");
		if (liId == url[3]) { //[]内の数字は、テストサーバーにUPする際は変更する。
			$(this).addClass("current");
		}
	});
	 
	$("#1").lavaLamp({
		fx: "backout", 
		speed: 400, //speed: 700からspeed: 400に変更
		click: function(event, menuItem) {
			return true;//falseからtrueに変更2010.12.14
		}
	});
});

//サブナビゲーション
var j$ = jQuery; 

j$(function(){
	if (document.fm2 != null) {
		var countCate = document.fm2.countCate.value;
		j$(".subAccordion").each(function(){ 
			j$("a.open", this).each(function(index){ 
			var $this = j$(this);

			if(index != countCate) $this.next().hide();

				$this.click(function(){ 
					var params = {height:"toggle", opacity:"toggle"};
					j$(this).next().animate(params).parent().siblings() 
					.children("ul:visible").animate(params);
					return false;
				}); 
			}); 
		}); 
	}
});
