$$("#section_right table a.ref_details").each(function(link) {
var t = new TableLoader({
image: link.firstChild,
href: link.href,
ajax_rows_selector: "#section_right table tr.ajax_" + link.parent().parent().id
});
link.onClick(function(event) {
event.stop();
t.toggle();
});
});