$().ready(function(){
$("a img").hover(
  function () {
	imgBig = $(this).parent().attr("href") ? $(this).parent().attr("href") : "";
	if (imgBig.indexOf("images/fotoadv")>0)
	{ 	
		$(this).parent().append($('<div id="big_img_for_see" style="clear:both; position:absolute; {IE} margin-top:-64; ; z-index: 1000;"><img border=0 src="'+imgBig+'"/></div>'));
	}
	  },
  function () {
	$("#big_img_for_see").hover(function(){},function(){$("#big_img_for_see").remove()})
  }

);
});