
$(document).ready(function(){
  // 偶数行にのみクラスを指定
	$('.box_tempo table tr').each(function(i){
		//alert(i%2)
		if(i%2 == 1){
		$(this).addClass('even-row');
	}});
});

$(document).ready(function() {

	$("#acube_sitemap .site_map_contents").show();
	$("#acube_bridal_sitemap .site_map_contents").hide();
	$("#wish_sitemap .site_map_contents").hide();
	$("#import_sitemap .site_map_contents").hide();
	
	//
	$("#acube_bridal_sitemap .home span").toggleClass("off");
	$("#wish_sitemap .home span").toggleClass("off");
	$("#import_sitemap .home span").toggleClass("off");
									
	$("#acube_sitemap .home").click(function(){$("#acube_sitemap .site_map_contents").toggle();
																						$("#acube_sitemap .home span").toggleClass("off");
																																													 });
	$("#acube_bridal_sitemap .home").click(function(){$("#acube_bridal_sitemap .site_map_contents").toggle();
																											$("#acube_bridal_sitemap .home span").toggleClass("off");
																																													 });
	$("#wish_sitemap .home").click(function(){$("#wish_sitemap .site_map_contents").toggle();
																					$("#wish_sitemap .home span").toggleClass("off");
																					});
	$("#import_sitemap .home").click(function(){$("#import_sitemap .site_map_contents").toggle();
																						$("#import_sitemap .home span").toggleClass("off");
																					});

})
