/*	Global Javascript Functions
	- dependent on jquery library (/js/jquery.js)
	  and referenced plugins
---------------------------------------------------	*/
$(window).load(function()
{
	// remove border from logo image
	$("a.logo > img").attr("border", "0");
	
	// open external links in new window
	$("a.external").click(function()
	{
		window.open(this.href);
		return false;
	});

});