if (document.images)
{

  home_off = new Image();
  home_off.src = "/images/nav/home_off.gif";
  home_on = new Image();
  home_on.src = "/images/nav/home_on.gif";

  about_off = new Image();
  about_off.src = "/images/nav/about_off.gif";
  about_on = new Image();
  about_on.src = "/images/nav/about_on.gif";
  
  contact_off = new Image();
  contact_off.src = "/images/nav/contact_off.gif";
  contact_on = new Image();
  contact_on.src = "/images/nav/contact_on.gif";
  
  faqs_off = new Image();
  faqs_off.src = "/images/nav/faqs_off.gif";
  faqs_on = new Image();
  faqs_on.src = "/images/nav/faqs_on.gif";
  
  job_off = new Image();
  job_off.src = "/images/nav/job_off.gif";
  job_on = new Image();
  job_on.src = "/images/nav/job_on.gif";
  
  other_off = new Image();
  other_off.src = "/images/nav/other_off.gif";
  other_on = new Image();
  other_on.src = "/images/nav/other_on.gif";
  

}

function swapImgOn(imgName) {
	if (document.images)
    		{
				document.images[imgName].src = eval(imgName+"_on.src");
    		}
}
function swapImgOff(imgName) {
	if (document.images)
    		{
				document.images[imgName].src = eval(imgName+"_off.src");
    		}
}

function popUpWin(url,name,width,height,left,top,directories,location,menubar,resizable,scrollbars,status,toolbar){
	window.open(url, name, "width="+width+",height="+height+",left="+left+",top="+top+",directories="+directories+",location="+location+",menubar="+menubar+",resizable="+resizable+",scrollbars="+scrollbars+",status="+status+",toolbar="+toolbar);
self.name = "siteopener";

	}