<!-- Hide the script from old browsers

img0_on = new Image(63,32);
img0_on.src="images/home_on.png";
img1_on = new Image(123,32);
img1_on.src="images/thecompany_on.png";
img2_on = new Image(124,32);
img2_on.src="images/surveys_on.png";
img3_on = new Image(123,32);
img3_on.src="images/testing_on.png";
img4_on = new Image(123,32);
img4_on.src="images/management_on.png";
img5_on = new Image(63,32);
img5_on.src="images/contact_on.png";
img0_off = new Image(63,32);
img0_off.src="images/home_off.png";
img1_off = new Image(123,32);
img1_off.src="images/thecompany_off.png";
img2_off = new Image(124,32);
img2_off.src="images/surveys_off.png";
img3_off = new Image(123,32);
img3_off.src="images/testing_off.png";
img4_off = new Image(123,32);
img4_off.src="images/management_off.png";
img5_off = new Image(63,32);
img5_off.src="images/contact_off.png";

function over_image(parm_name)
{
document[parm_name].src = eval(parm_name + "_on.src");
}
function off_image(parm_name)
{
document[parm_name].src = eval(parm_name + "_off.src");
}
//End Hiding Here -->