
jQuery(document).ready(function() {
	
$("a[href$='.pdf']").removeAttr("onclick");	
$("a[href$='.pdf']").click(function(){
    window.open(this.href);
    return false;
   });
   
});
