// $Id: amazon_store.js,v 1.4 2009/12/05 14:04:02 rfay Exp $

Drupal.behaviors.amazonStoreShowHide = function () {
  $(".togglebtn").click(function () {
    // Looks down from 2 levels up for an element with class=toggle
    $(this).parent().parent().find('.toggle').toggle();
  });
}