$(document).ready(function() {
  
   /* ZIP-Datei download Tracken */
   $('a[href$=".zip"]').click(function(){
      _gaq.push(['_trackEvent', 'Download', 'Link zip-Datei', $(this).attr('href')]);
   });
   /* PDF-Datei download Tracken */
   $('a[href*=".pdf"]').click(function(){
      _gaq.push(['_trackEvent', 'Download', 'Link pdf-Datei', $(this).attr('href')]);
   });
   
   /* externe Links Tracken */
   $("a[href^='http://']:not([href*='http://www.prinopa.de']):not([href*='https://www.prinopa.de'])").click(function(){
      _gaq.push(['_trackEvent', 'externer Link', $(this).attr("href").replace("http://", "").replace("https://", "")+" (Klick)", document.URL.replace("http://", "").replace("https://", "")]);
   });   
   
});

