/*--------------------------------------------------------------------------*
 *  
 *  アコーデオン
 *  
 *--------------------------------------------------------------------------*/


$(function() {
    $(".under_right_contents01 h2").hover(function(){
        $(this).css("cursor","pointer");
    },function(){
        $(this).css("cursor","default");
        });
    $(".under_right_contents01 ul").css("display","none");
    $(".under_right_contents01 ul.open").css("display","block");
    $(".under_right_contents01 h3").click(function(){
        $(this).next().slideToggle("slow");
    });
});

