// JavaScript Document

/*==================================

            ݒ

==================================*/ 
$(function(){
    $(".topImg > img").css("display", "none");
    $("#collections > div").css("display", "none");
    $("#tmbArea > ul").css("display", "none");
    $(".topImg > img" ).fadeIn(800);
    $("#collections > div").eq(0).fadeIn(500);
    $("#tmbArea > ul").fadeIn(800);
	$("li").each(function(i){
        if($("#collections > .categoryImg").is(".categoryImg")){
            $(this).click(function(){
                $("#collections > div").css("display", "none");
                $("#collections > div").eq(i+1).toggle();
            });
		}else{
            $(this).click(function(){
                $("#collections > div").css("display", "none");
                $("#collections > div").eq(i).toggle();
            });
		}
    });
});



