$(document).ready(function(){
	$('a').each(function(i,v){
		if(v.href.indexOf('.pdf')!==-1){
			v.onclick=function(){
				window.open(this.href);
				return false;
			}
		}
	});
});
