jQuery(function ($) {
	$('.pdfhandler').click(function (e) {
		// prevent href src from firing
		e.preventDefault();
		// get the pdf URL
		getPDF = $(this).attr('href');
		// set the iframe src to the pdf URL
		$('#pdfhandler-frame iframe').attr('src',getPDF);
		// copy the iframe into the modal
		var pdfiframe = $('#pdfhandler-frame').html();
		$('#pdfhandler').html(pdfiframe);
		// fire the modal
		$('#pdfhandler').modal();
			return false;
		});
});
