 $(document).ready(function(){
   $("input.spa_code").blur(function(){
    $(this).next("div").load("guarantee.html?task=getProduct&spa_code="+$(this).val());
   });
   
   $(".addProduct").click(function(){
     $("table:hidden:first").show();
     $(this).hide();
    return false;
   });
   
   
   
   
 });



