
var pdf_file_path = "/behandelingen-cosmetische-chirurgie/tarieven/Tarieven%20Parkkliniek.pdf";
jq(document).ready(function(){
    jq('#content a[href*=.pdf]').each(function(){
        if (jq(this).attr('href') == pdf_file_path){
            jq(this).bind('click',function(){
                _gaq.push(['_trackPageview', pdf_file_path+'?print']);
            });
        }
    });
})

//
//
//function get_current_path(){
//    // tryes to deterime the path of current element seen.
//    var path = window.location.pathname.replace(/\/$/,"");
//    // trailing slash is removed
//    return path;
//}


