////menu Rollover scriptlet.
imageList = new Array("default", "findajob", "applynow", "whoweare", "postanopening", "howitworks", "whowerepresent", "testimonials", "contact", "hints", "postoptions", "newsletterarchive", "updateprofile");
if(document.images){
  for(i=0;i<imageList.length;i++){
    eval("navtext"+imageList[i]+"= new Image()");
    eval("navtext"+imageList[i]+".src = '/images/navtext"+imageList[i]+".gif'");
	eval("navover"+imageList[i]+"= new Image()");
    eval("navover"+imageList[i]+".src = '/images/nav"+imageList[i]+"over.gif'");
	eval("nav"+imageList[i]+"= new Image()");
    eval("nav"+imageList[i]+".src = '/images/nav"+imageList[i]+".gif'");
}}
function menuOn(imageName){
  if(document.images){
  	document[imageName].src=eval("navover"+imageName+".src");
    document["navtext"].src= eval("navtext"+imageName+".src");
}}
function menuOff(imageName){
  if(document.images){
  	document[imageName].src=eval("nav"+imageName+".src");
    document["navtext"].src= navtextdefault.src;
}}
