// Closure to keep vars out of global scope
(function() {

  // Runs when page is ready
  $(document).ready(function() {
    
    $('body').bind('touchstart', function(event){
      $('.card').toggleClass('show-back');
    });
  
  });

}).call(this);

