jQuery(document).ready(function(){
  // this is when you click "more" on search results to read more of the description
  jQuery(".view_trigger").click(function(){
    item_id = this.id;
    item_params = "item_id=" + item_id;
    jQuery.ajax({
      type: "GET",
      url: "get_review.asp",
      data: item_params, 
      success: function(html){
        jQuery(".view_trigger").parent("#" + item_id).html(html);
      }
    });
    return false;
  })  
})
