$(document).ready(function() {
    $(".text")
        .hide();

    if((document.form1) && (document.form1['jump_chk']) && (document.form1['jump_chk'].value == "0")) {
        $(".text_7")
            .hide();
    }
        
    $("#under02column_guide .stitle").click(function(){
        $(this).next().slideToggle();
    });
    $(".close").click(function(){
        $(this).next().slideToggle();
    });
    
    $(".stitle").hover(function(){
        $(this).css("cursor","pointer");
    },function(){
        $(this).css("cursor","default");
    });
});

