$(document).ready(function()
  {
    $('.faq h3 a').live('click', function() {
      $(this).parent().parent().find('.answer').slideToggle();
      
      return false;
    });
    
    $('#support_product_choose').change(function() {
      if ($(this).val() != 0)
      {
        $('#product_support').load(
          $('#product_chooser_form').attr('action') + '?product=' + $(this).val(),
          null,
          function() {
            $.scrollTo('#product_support', 500);
          }
        );
      }
    });
    
    $('#product_chooser_form input').hide();
  }
);

