$(document).ready(function(){
    $("a[href$='.pdf']").click(function(){      
        var url = $(this).attr("href");
     
        _gaq.push(['_trackEvent', 'Downloads', 'click', url]);
        
      window.open(url);      
      return false;
    });
});

$(document).ready(function(){
    $("#filter").keyup(function(){
 
        // Retrieve the input field text and reset the count to zero
        var filter = $(this).val(), count = 0;
 
        // Loop through the comment list
        $(".person").each(function(){
 
            // If the list item does not contain the text phrase fade it out
            if ($(this).text().search(new RegExp(filter, "i")) < 0) {
                $(this).fadeOut();
 
            // Show the list item if the phrase matches and increase the count by 1
            } else {
                $(this).show();
                count++;
            }
        });
 
        // Update the count
        var numberItems = count;
      $("#filter-count").text("Antal : "+count);
    });
});
