$(document).ready(function() {
    $(".text")
        .not("#under03column_guide .text:first")
        .hide();
        
    $("#under03column_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");
    });
});
