$(document).ready(function(){
	setupPDFs();
});

function setupPDFs() {
	var anchors = $('a').get();
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		var ahref = anchor.getAttribute("href");
		if (ahref.match("pdf")){
			makePDF(anchor);
		}
	}
}

function makePDF(anchor) {
	anchor.target = "_blank";
	$(anchor).after('<img src="http://sse-cdn.stevenlsmith.com/pdficon.gif" alt="PDF Logo" title="PDF will open in a new window" style="margin: 0 5px;"/> ');
}

