Usar un jquery para esto es un despropósito.
Probé el ejemplo en Chrome. Y no sé por qué si la función y el identificador de la imagen tienen el mismo nombre ... se tilda.
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Documento sin título</title>
<script type="text/javascript">
function cambiar(cambiar_foto)
{
document.getElementById('cambio').src = cambiar_foto;
}
</script>
</head>
<body>
<img src="http://img515.imageshack.us/img515/1196/danielsanjurjo.jpg" id="cambio"
style="float: left; margin: 10px; " />
<img src="http://img89.imageshack.us/img89/3793/altardiamuertosmfernand.th.jpg" style="cursor: pointer" onclick="cambiar('http://img89.imageshack.us/img89/3793/altardiamuertosmfernand.jpg')" />
<br>
<img src="http://img840.imageshack.us/img840/3793/altardiamuertosmfernand.th.jpg" style="cursor: pointer" onclick="cambiar('http://img840.imageshack.us/img840/3793/altardiamuertosmfernand.jpg')" />
</body>
</html>
Y no te costaba nada poner rutas absolutas a las imágenes.