$(document).ready(function(){
  $('div.faq_dynamic a').toggle(function() {
    $this = $(this).parent();
    
    faqlink = $this
      .children('a')
      .attr("href");
    
    faqid = faqlink.match(/&faqid=(\d+)&/);
    
    $('<div></div>')
      .load('http://www.levelshield.com/cgi-bin/shopping/index.cgi',{'action':'faq_rawHTML', 'faqid':faqid[1]},function() {
        $(this)
          .hide()
          .appendTo($this)
          .show('slow');
        })
    
    return false;
  }, function() {
    $this = $(this).parent();
    $this
      .children('div')
      .hide('slow',function() {$(this).remove();});
      
    
  });
  
  
});