// begin import of javascript files
function addJavascript(jsname) {
var th = document.getElementsByTagName('head')[0];
var s = document.createElement('script');
s.setAttribute('type','text/javascript');
s.setAttribute('src',jsname);
th.appendChild(s);
} 

	//list of javascript files to be included
	
	
	addJavascript('http://www.fws.gov/scripts/js/foresee.js');
		


// end import of javascript files







