var namesVec_c = new Array("servicos_bt3_1.gif", "servicos_bt3.gif");
var root='images/';

function toggle_c(image,showorhide){
if (showorhide=="show") {image.setAttribute('src',root+namesVec_c[0]);}
if (showorhide=="hide") {image.setAttribute('src',root+namesVec_c[1]);}

nr = image.getAttribute('src').split('/');
nr = nr[nr.length-1]

if(nr==namesVec_c[0]){image.setAttribute('src',root+namesVec_c[1]);}
else{image.setAttribute('src',root+namesVec_c[0]);}

}