// JavaScript Document
   <!--
document.write("<div id='imagen'></div>");
google_ad_client = "ca-pub-0497636657050832";
/* 728x90, creado 3/01/10 */
google_ad_slot = "8003549560";
google_ad_width = 728;
google_ad_height = 90;
	  --> 
$('.zoom').mousemove(function(e){
$('#imagen').fadeIn('fast');
laimagen=$(this).attr('src');
eltexto=$(this).attr('alt');
laimagen="<img src='"+laimagen+"'/><br/>"+eltexto;
$('#imagen').html(laimagen);
$('#imagen').css('top',e.pageY);
/*
})
$('img').mousemove(function(e){
izda=e.pageX;
if(e.pageX >800){izda=e.pageX-$('img').attr('width')};
$('#imagen').css('top',e.pageY);
$('#imagen').css('left',izda);						
		
*/
$('img').mouseleave(function(e){
$('#imagen').fadeOut('fast');
});	
		   
  });
