/* ************************************************************************** */
$(document).ready(function()
{
	
	
	// links to PDF's
	$("a[href$=pdf]").click(function(event)
	{
		event.preventDefault();
		window.open($(this).attr("href"));
	});
	
	// External links
	$("a[href^=http://]").add("a[href^=https://]").bind("click", function()
	{
		window.open($(this).attr("href"));
		return false;
	});
		
	
});
/* ************************************************************************** */
/* ************************************************************************** */