(function($) {
  $(function() {
    /* brochure downlaod */
    $("a#download-brochure").click(function(){
      _gaq.push(['_trackPageview', '/brochure/download']);
    });
    
    $(".BrochureSuccessPage h3 a[href$=.pdf]").click(function(){
      _gaq.push(['_trackPageview', '/brochure/download']);
    });
    
    /* newsletter signup callout form */
    $("#newsletter-signup-form form").submit(function(e){
      e.preventDefault();
      var t = this;
      _gaq.push(['_trackPageview', '/newsletter/signup']);
      setTimeout(function(){t.submit();},300);
    });
    
    /* contact email */
    $("a[href=mailto:tyler@tylerplace.com]").click(function(e){
      e.preventDefault();
      var t = this;
      _gaq.push(['_trackPageview', '/contact/email']);
      setTimeout(function(){window.location = t.href;},300);
    });
  });
})(jQuery);
