$(function () {

	/* トップページのみ */
	if ($(document.body).hasClass("home")) {
		/** #lead */
		(function roop_fade ($com) {
			$com.fadeIn(4000, function () {
				var $this=$(this);
				var $next=$this.next("div");
				$this.fadeOut(3000, function () {
					if ($next.length) {
						roop_fade($next);
					}
					else {
						roop_fade($this.siblings("div:eq(0)"));
					}
				});
			});
		})($("#lead div.img_com div:eq(0)"));

		$("#gnav2 div.menu").hover(function () {
			$(this).find("div.bd").slideDown();
		}, function () {
			$(this).find("div.bd").slideUp();
		});
	}
});
