
$(document).ready(function() {
      //alert('aa');
    $('#agr_box').hide();
    
    $('#show_agr').click(function()
    {
      $('#agr_box').toggle();
      return false;   
    });
    
    $('.pay').click(function()
    {
      //closeAll();
      $(this).parent().next().toggle();
      return false;   
    });
    
    $('#pack').click(function()
    {
      //closeAll();
      $('#pack_banner').toggle();
      return false;   
    });

    function closeAll()
    {
      $('.pay').each(function()
      {
        $(this).parent().next().hide();   
      });
    }
    
    closeAll();
});
