//this loads js files into the page head - ryan
function loadjs(fName){
  	var fLink=document.createElement('script');
	fLink.setAttribute("language", "JavaScript");
  	fLink.setAttribute("type","text/javascript");
  	fLink.setAttribute("src", fName);
	
	if (typeof fLink!="undefined");
  	document.getElementsByTagName("head")[0].appendChild(fLink);

}
//load the needed js into the head

loadjs("/lib/js/jquery-1.3.2.min.js");
loadjs("/visitors/lib/js/jMore.js");
