// JavaScript Document
$(function(){
	$(".indexBanner img:first").show();
	$(".indexTopRight dl dd:first").height(210);
	$(".indexTopRight dl dt:first").height(0);
	$(".indexTopRight dl dt").click(function(){
		if(!$(".indexTopRight dl dd").is(":animated")){
			$(".indexTopRight dl dt").removeClass("current");
			$(this).addClass("current").delay(800).animate( { height: 0 }, 500);
			$(".indexTopRight dl dt").not(".current").animate( { height: 41 }, 500);
			$(this).parent().siblings("dl").find("dd").removeClass();
			$(this).parent().siblings("dl").find("dd").not(".current").animate( { height: 0 }, 500);
			$(this).parent().find("dd").addClass("current").animate( { height: 210 }, 500);
		}
		var currentIndex = $(".indexTopRight dl dt").index(this);
		$(".indexBanner img").fadeOut("slow").css("z-index","10");
		$(".indexBanner img").eq(currentIndex).fadeIn("slow").css("z-index","20");
	});	
});
