window.onload=function(){
if(!document.getElementById || !document.getElementsByTagName) return;
links=document.getElementById("miniature").getElementsByTagName("a");
for(i=0;i<links.length;i++)
  {
    links[i].onclick=function(){Show(this);return(false)};
    }

}

function Show(obj){
bigimg=document.getElementById("FotoProdotto");
bigimg.src=obj.getAttribute("href");
/*
alert("images/auto/0"+obj.getAttribute("id")+"_p.jpg");
bigimg.src="images/auto/0"+car+"_p.jpg";
bigimg.src="images/auto/0"+obj.getAttribute("id")+"_p.jpg";
smallimg=obj.getElementsByTagName("img")[0];
t=document.getElementById("titolo");
t.removeChild(t.lastChild);
t.appendChild(document.createTextNode(smallimg.title));*/
}
