/*	Global Javascript Functions
	- dependent on jquery library (/js/jquery.js)
	  and any referenced plugins
---------------------------------------------------	*/
$(document).ready(function()
{
	// open external links in new window
	$("a.external").click(function() {
		window.open(this.href);
		return false;
	});

});