// Logo Image Hover
if (document.images)
{
    pic1on= new Image(76,45);
    pic1on.src="/image/HomeButtonOn.jpg";  

    pic1off= new Image(76,45);
    pic1off.src="/image/HomeButtonOff.jpg";

    pic2on= new Image(94,45);
    pic2on.src="/image/ServicesButtonOn.jpg";  

    pic2off= new Image(94,45);
    pic2off.src="/image/ServicesButtonOff.jpg";

    pic3on= new Image(114,45);
    pic3on.src="/image/IndustriesButtonOn.jpg";  

    pic3off= new Image(114,45);
    pic3off.src="/image/IndustriesButtonOff.jpg";

    pic4on= new Image(99,45);
    pic4on.src="/image/InsightsButtonOn.jpg";  

    pic4off= new Image(99,45);
    pic4off.src="/image/InsightsButtonOff.jpg";

    pic5on= new Image(99,45);
    pic5on.src="/image/MediaButtonOn.jpg";  

    pic5off= new Image(99,45);
    pic5off.src="/image/MediaButtonOff.jpg";

    pic6on= new Image(104,45);
    pic6on.src="/image/AboutButtonOn.jpg";  

    pic6off= new Image(104,45);
    pic6off.src="/image/AboutButtonOff.jpg";

    pic7on= new Image(129,27);
    pic7on.src="/image/WebServicesButtonOn.jpg";  

    pic7off= new Image(129,27);
    pic7off.src="/image/WebServicesButton.jpg";

    pic8on= new Image(129,27);
    pic8on.src="/image/ITServicesButtonOn.jpg";  

    pic8off= new Image(129,27);
    pic8off.src="/image/ITServicesButton.jpg";

    pic9on= new Image(121,27);
    pic9on.src="/image/NewsArchiveButtonOn.jpg";  

    pic9off= new Image(121,27);
    pic9off.src="/image/NewsArchiveButton.jpg";

    pic10on= new Image(96,27);
    pic10on.src="/image/RSSFeedButtonOn.jpg";  

    pic10off= new Image(96,27);
    pic10off.src="/image/RSSFeedButton.jpg";

    pic11on= new Image(100,27);
    pic11on.src="/image/AboutUsButtonOn.jpg";  

    pic11off= new Image(100,27);
    pic11off.src="/image/AboutUsButton.jpg";

    pic12on= new Image(106,27);
    pic12on.src="/image/ContactUsButtonOn.jpg";  

    pic12off= new Image(106,27);
    pic12off.src="/image/ContactUsButton.jpg";

    pic13on= new Image(149,27);
    pic13on.src="/image/TestimonialArchiveButtonOn.png";  

    pic13off= new Image(149,27);
    pic13off.src="/image/TestimonialArchiveButton.png";

}

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 <= 2)
	{
		alert("Search Selection - Please provide a valid entry");
		return false;
	}
	else
	{
		return true;
	}
}


// Form Input Clear - Search
function Remove()
{
    document.SearchForm.Search.value = "";
}


// Portfolio Border Color Change
function ChangeColor(imgName)
{
    document[imgName].style.borderColor = "#e36f1e";
}

function ChangeColorBack(imgName)
{
    document[imgName].style.borderColor = "#c05d17";
}