// Logo Image Hover
if (document.images)
   {
     pic1on= new Image(118,37);
     pic1on.src="/image/HomeButtonOn.jpg";  

     pic1off= new Image(118,17);
     pic1off.src="/image/HomeButtonOff.jpg";
     
     pic2on= new Image(128,37);
     pic2on.src="/image/FirmButtonOn.jpg";  

     pic2off= new Image(128,37);
     pic2off.src="/image/FirmButtonOff.jpg";
     
     pic3on= new Image(118,35);
     pic3on.src="/image/AttorneysButtonOn.jpg";  

     pic3off= new Image(118,35);
     pic3off.src="/image/AttorneysButtonOff.jpg";
     
     pic4on= new Image(128,35);
     pic4on.src="/image/PracticeButtonOn.jpg";  

     pic4off= new Image(128,35);
     pic4off.src="/image/PracticeButtonOff.jpg";
     
     pic5on= new Image(118,35);
     pic5on.src="/image/CareersButtonOn.jpg";  

     pic5off= new Image(118,35);
     pic5off.src="/image/CareersButtonOff.jpg";
     
     pic6on= new Image(128,35);
     pic6on.src="/image/ResourcesButtonOn.jpg";  

     pic6off= new Image(128,35);
     pic6off.src="/image/ResourcesButtonOff.jpg";
     
     pic7on= new Image(118,35);
     pic7on.src="/image/ContactButtonOn.jpg";  

     pic7off= new Image(118,35);
     pic7off.src="/image/ContactButtonOff.jpg";
     
     pic8on= new Image(128,35);
     pic8on.src="/image/NewsButtonOn.jpg";  

     pic8off= new Image(128,35);
     pic8off.src="/image/NewsButtonOff.jpg";
     
   }

function lightup(imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + "on.src");
      document[imgName].src= imgOn;
    }
 }

function turnoff(imgName)
 {
   if (document.images)
    {
      imgOff=eval(imgName + "off.src");
      document[imgName].src= imgOff;
    }
 }
 
function showclick(imgName)
 {
   if (document.images)
    {
      imgClick=eval(imgName + "click.src");
      document[imgName].src= imgClick;
    }
 }
 
 
// Search Validation
function SearchValidate()
{
    if (document.getElementById("Search").value.length <= 3)
    {
	   	alert("Please provide what you would like this site searched for.");
	    return false;
    }
	else
	{
		return true;
	}
}
