<!--

// Path to images directory
var gsPath    = "nav/";



if (document.images)
{

	home_on = new Image();
        home_on.src = "nav/home_on.gif";
	home_off = new Image();
	home_off.src = "nav/home_off.gif";
	home_main = new Image();
        home_main.src = "nav/home_main.jpg";
        
	about_on = new Image();
        about_on.src = "nav/about_on.gif";
	about_off = new Image();
	about_off.src = "nav/about_off.gif";
	about_main = new Image();
        about_main.src = "nav/about_main.jpg";
        

	attorneys_on = new Image();
        attorneys_on.src = "nav/attorneys_on.gif";
	attorneys_off = new Image();
	attorneys_off.src = "nav/attorneys_off.gif";
	attorneys_main = new Image();
        attorneys_main.src = "nav/attorneys_main.jpg";
        

	publications_on = new Image();
        publications_on.src = "nav/publications_on.gif";
	publications_off = new Image();
	publications_off.src = "nav/publications_off.gif";
	publications_main = new Image();
        publications_main.src = "nav/publications_main.jpg";        
        
	sigcases_on = new Image();
        sigcases_on.src = "nav/sigcases_on.gif";
	sigcases_off = new Image();
	sigcases_off.src = "nav/sigcases_off.gif";
	sigcases_main = new Image();
        sigcases_main.src = "nav/sigcases_main.jpg";
        

	industrylinks_on = new Image();
        industrylinks_on.src = "nav/industrylinks_on.gif";
	industrylinks_off = new Image();
	industrylinks_off.src = "nav/industrylinks_off.gif";
	industrylinks_main = new Image();
        industrylinks_main.src = "nav/industrylinks_main.jpg";
        
	contact_on = new Image();
        contact_on.src = "nav/contact_on.gif";
	contact_off = new Image();
	contact_off.src = "nav/contact_off.gif";
	contact_main = new Image();
        contact_main.src = "nav/contact_main.jpg";        
      

 
        
  
        
}





function imgOff(sName) {
	if (document.images) {
		document[sName].src = gsPath + sName + "_off.gif";
		document.mainImage.src = "nav/home_main.jpg";

	}
}

function imgOn(sName) {
	if (document.images) {
		document[sName].src = gsPath + sName + "_on.gif";
		document.mainImage.src = gsPath + sName + "_main.jpg";

	}
}




//-->


