$($(document).each(function(){
	$('img:not([onclick])',this).live('mouseover',function() {
	  $(".ImgScreen").remove();
	  $(this).after('<img class="ImgScreen" src="http://illiweb.com/fa/vide.gif" alt="" title="'+this.title+'" style="width: 1px; height: 1px; position: absolute;" onclick="" />');
	  $('.ImgScreen').css('top',event.pageY+'px');
	  $('.ImgScreen').css('left',event.pageX+'px');
	});
	$('img:not([onclick])',this).live('mousemove',function(event) {
	  $('.ImgScreen').css('top',event.pageY+'px');
	  $('.ImgScreen').css('left',event.pageX+'px');
	});
}));
