$(document).ready(function(){
  $("td#first").fadeTo(2000,1);
  $("img[alt='Foto']").mouseover(function(){
document.body.style.cursor = "pointer";
  });
  $("img[alt='Foto']").mouseout(function(){
document.body.style.cursor = "auto";
  });
});

function loadBig(str) {
  $("td#first").fadeTo(500,0);
  setTimeout("changeImg('"+str+"')",500);
  $("td#first").fadeTo(1000,1);
}

function changeImg(str2) {
document.getElementById("imgbig").innerHTML = $.ajax({
  url: "lmnv.php?"+str2,
  async: false
 }).responseText;
}


