/* Friends box javascript: used primarily on "view listing" page */
$(document).ready(function() {
    
    $("#friends_menu").find(".content").find("select").change( function() {
        load_friends();
    });
    
    
    function load_friends() {
        if (query_type == "")
        {
            load_friends();
        }
        var query_type = $("#friends_menu").find(".content").find("p").find("select").val();
        var listing_id = $("#friends_menu").find(".content").find("p").find("#listing_id").val();
        
        /* load data */
        $.ajax({
              type: "GET",
              url: "/friends/get_friends/"+listing_id+"/"+query_type+"/",
              beforeSend: function(x) {
                $("#friends_menu").find(".content").find(".friends").html("<p align=\"center\"><img src=\"/img/icons/spinner_red.gif\" /></p>")
              },
              success: function(html){
                $("#friends_menu").find(".content").find(".friends").html(html);
                applyStatusLevelListeners("#friends_menu");
              }
            });
    } //load_friends
    
    load_friends();


});