$(function() {
  // development helpers
  $(window).keypress(function(e) {
    // key g or G
    if(e.which == 103 || e.which == 71) $('#grid_overlay').toggle();
  });
  // /development helpers
});

$(document).ready(function() {

});
