$(document).ready(function test(){
//初期設定  
    $("#contents-B").hide();
    $(".section #dd").eq(0).hide();
    $(".section #dd").eq(1).hide();
    $(".section #dd").eq(2).hide();
    $(".section #dd").eq(3).hide();
          
    //クリック時のfunction設定  
   $(".section #dt").click(function(){
	 
        //何番目のdtなのかを変数に代入  
        
        $("#contents").hide("");//商品一覧非表示
        $("#contentsB").hide("");//商品一覧非表示
        $("#contents-C").hide("");//商品一覧非表示
        $("#contents-D").hide("");//商品一覧非表示
        $("#contents-A").hide("");//メイン画像非表示
        $(".btn-contact_off").hide("");//
        $("#contents-B").show("");//表示
        var index = $(".section #dt").index(this);  
        var name = "cookName" ;//cookieの名前  
        var cookVal = $.cookie(name);//cookieの値を変数に代入  
          
        //クリックされたら対応するddにイベントを割り当てる  
        if($("+#dd",this).css("display")=="none"){ //クリックされたdt要素に隣接するdd要素が非表示だった場合
			$(".section #dd").slideUp("normal"); //スライドアップで非表示
			$("+#dd",this).slideDown("normal"); //クリックされたdt要素に隣接するdd要素をスライドダウンで表示
		}  
		}).css("cursor","pointer");
    
    
   
    
    
     $(".changeIma1").click(function(){
    $("#contents-B img").attr("src","/user_data/img/wardrobe.jpg")
   
    $("#container").css('width','957px');
    $("#contents-B img").css('width','776px');
    $("#contents-B img").css('height','480px');
    })
     $(".changeIma2").click(function(){
    $("#contents-B img").attr("src","/user_data/img/accessories.jpg")
   
    $("#container").css('width','957px');
    $("#contents-B img").css('width','776px');
    $("#contents-B img").css('height','480px');
    
    })
    
    $(".changeIma6").click(function(){
    $("#contents-B img").attr("src","/user_data/img/household_utilities.jpg")
   
    $("#container").css('width','957px');
    $("#contents-B img").css('width','776px');
    $("#contents-B img").css('height','480px');
    
    })
    $(".changeIma7").click(function(){
     $("#contents-B img").attr("src","/user_data/img/culture.jpg")
   
    $("#container").css('width','957px');
    $("#contents-B img").css('width','776px');
    $("#contents-B img").css('height','480px');
    
    })
        
}); 

