$(document).ready(function(){
	// Look for links to PDF's
	$('a[href$=".pdf"]').each(function(){
		// Get the link URL and text
		var url = $(this).attr("href");
		var title = $(this).html();
		// Open this PDF in a popup window when clicked
		$(this).click(function(event){
		    event.preventDefault();
			openPDF(url,title);
		})
	});
});

function openPDF(url,title){
   window.open(url,title,'width=700,height=850,scrollbars=no,menubar=yes,toolbar=no','');
}
