$(document).ready(function() {

    $(".listing_info").hide();

/*
    $(".listing_info").hover( function() {
        $(this).simpletip({
            content: $(this).text()
        });
    });
*/  
    $(".listing_info_trigger").click( function(e) {
        e.preventDefault();
       $(this).nextAll(".listing_info").toggle("fast"); 
    });

});
