function toggleDealership(dealership_id)
{
  var indicatorHTML='<img src="/images/icons/progress.gif" alt="" style="margin:0 3px 0 5px;" />Retrieving Dealership...';
  var list = $("#"+dealership_id+" .dealershiplist");
  var toggle = $("#"+dealership_id+" .toggle");
  var indicator = $("#"+dealership_id+" .indicator");
  
  if (list.is(":hidden")) {
    $.ajax({
      type: "POST",
      url: "/ajax/returnDealershipInformation",
      data: {id: dealership_id},
      dataType: "html",
      beforeSend: function(request){
        indicator.html(indicatorHTML);
        toggle.text('[–]');
      },
      success: function(data, text){
        indicator.html('');
        list.html(data);
        list.show("blind", {}, 1500);
      }
    });
  } else {
    toggle.text('[+]');
    list.hide("blind", {}, 1500, function(){
      list.html('');
    });
  }
}
