//When the DOM tree is loaded
$(document).ready(function() {

  $('.pricebox').hide();

  
  $('.toggleprices').click(function() {
    $('.pricepackage').toggle(0, function() {

    });
    $('.pricebox').toggle(0, function() {
      });
  });
  
  
});


