// Whenever there is a link with a class of "thickbox",
// change the URL so that there is a query string with
// Thickbox parameters
$(document).ready(function() {
  $("a.thickbox").each(function() {
    $(this).attr("href", $(this).attr("href") + "?lb=1&KeepThis=true&TB_iframe=true&height=492&width=436");
    $(this).bind("click", function() {
      // if there are any Flash pieces on the page, thanks to Firefox/Mac, hide them
      // it's up to Thickbox, when closing, to show all Flash pieces again
      $("object").css("visibility", "hidden");
    });
  });
});