// Initialize Primary Nav
var primaryNav;

Spry.Utils.addLoadListener(function()
{
	primaryNav = new Spry.Widget.MenuBar("primaryNav");
});


$(function() {
	//Open external links in a new window
	$("a[href^=http]").click(function(){
		window.open(this.href);
		return false;
	});
	//Open PDFs in a new window
	$("a[href*=.pdf]").click(function(){
		window.open(this.href);
		return false;
	});


});

