/* site.js by Rob Martin for Quintessential Mischief LLC */

function clearInput(formfield){
  if (formfield.defaultValue==formfield.value) formfield.value = "";
}

$(document).ready(function() {
  $('dl.accordion dd').hide();
  $('dl.accordion dt').click(function() {
    $(this).next('dd').slideToggle();
  });
  $('#accordion-open').click(function() {
    $('dl.accordion dd').slideDown();
  });   
  $('#accordion-close').click(function() {
    $('dl.accordion dd').slideUp();
  });  
  $('#show-ship').click(function() {
    $('#shipping-policy-info').toggle('fast');
    return false;
  });
  $('#hide-ship').click(function() {
    $('#shipping-policy-info').hide();
  });
  $('#checkout').click(function() {
    if (!$('#ship-policy').attr('checked')) {
      alert('We are very concerned that you receive the highest quality product from us.\n\nPlease acknowledge that you have read our Shipping Policy and Info.');
      return false;
    }
  });

});

