| 
		
			Сообщение от Pashok
			
		
	 | 
	| 
		Три часа ковырялся, но так и не смог победить.
	 | 
	
Как вариант...
<!DOCTYPE html>
<html>
<head>
<script src='http://code.jquery.com/jquery-latest.js'></script>
<!--
<link rel='stylesheet type=text/css href=tmp.css' />
-->
<style type='text/css'>
.images {
	min-height: 10px;
	border: 1px solid;
}
</style>
<script type='text/javascript'>
$(function() {
	$('.images').mouseover(function (){
		$(this).find('.lin').each(function (){
			$(this).append('<img src="'+this.href+'" />');
			$(this).removeAttr('href');
		});
		$(this).unbind('mouseover');
	});
});
</script>
</head>
<body>
<div class="images">
	<a class="lin" href="адрес1"></a>
	<a class="lin" href="адрес2"></a>
	<a class="lin" href="адрес3"></a>
	<a class="lin" href="адрес4"></a>
</div>
</body>
</html>