No creo que sea spam @zerokilled
Si, en realidad tiene varios problemas, la mayoría relacionados con la forma caótica en que se invocan las scripts. hay funciones que llaman a funciones y al parecer no todas cargan al cargar la página. La solución puntual no te la puedo decir´. Pero empezá probando con esto, todo este fragmento
Código Javascript
:
Ver original<script>
document.onload="llama()";
function abreImagen(img){
var parrafo = document.getElementById("respuesta");
var nodoContenido = document.createTextNode(document.images[img].title);
parrafo.replaceChild(nodoContenido,parrafo.childNodes[0]);
// parrafo.appendChild();
//document.body.appendChild(parrafo);
var cPath = "cPath=" + (document.images[img].id).substring(2);
// document.write('id=' + document.images[img].id);
window.open("index.php?" + cPath,"_self");
}
</script>
<script type="text/javascript">
var color = 0;
var suma = 1;
function llama(){
if (color<=0){
aparecer();
}
}
function aparecer(){
var obj = document.getElementById('escaparate');
obj.style.display = "block";
color += suma;
if (!(color>=110)){
obj.style.filter = 'alpha(opacity='+color+')';
obj.style.opacity = color /100;
obj.style.MozOpacity = color /100;
obj.style.KHTMLOpacity = color /100;
window.setTimeout("aparecer();", 10);
}
}</script>
<script>
$(document).ready(function(){
// This initialises carousels on the container elements specified, in this case, carousel1.
$("#carousel1").CloudCarousel(
{
xPos: 400,
yPos: 50,
buttonLeft: $("#left-but"),
buttonRight: $("#right-but"),
altBox: $("#alt-text"),
titleBox: $("#title-text"),
// bringToFront: true,
// autoRotate: "left",
autoRotateDelay: 2000,
yRadius:50,
xRadius:300,
speed:0.5,
reflHeight:70,
reflGap:5,
minScale:0.3
}
);
});
</script>
Ponelo antes del cierre del body, y no por fuera del html como esta ahora, y la primer linea
reemplazala por
a lo mejor tenés suerte y se arregla.
y no estaría demás que limpies tu html
Saludos