

$(document).ready( function()
{

	// Rest Of The Site
	$("a[href*=.pdf]").click(function()
	{
		window.open(this.href);
		return false;
	});

})
