$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#prices').hide();

 // toggles the slickbox on clicking the noted link
  $('a#prices-toggle').click(function() {
 $('#prices').toggle(400);
 return false;
   });
   $('#jcart').show();

 // toggles the slickbox on clicking the noted link
  $('p#shopcart-toggle').click(function() {
 $('#jcart').toggle(400);
 return false;
  });
});
