function formSent() { _gaq.push(['_trackPageview', '/QuoteRequest']); }
function mailSent() { _gaq.push(['_trackPageview', '/EmailSent']); }

jQuery(document).ready(function($) {
  $('a[href^=mailto]').click(function(){
      mailSent()
  });
});

