Number.prototype.mod = function(n) { return ((this % n) + n) % n; }
window.redraw_font = function() {}

$(function() {
  $('#button').hide()
  $('#interface').find('.send a').show().click(function(e){
    e.preventDefault()
    $('#contact').submit()
  })    
})  


