var $images, $text;
$(document).ready(function()
{
	$images= $("DIV.box IMG");
	$text = $("DIV.box-text");
	//alert($images.length + ", " + $text.length);
	$images.each(function(i, obj)
	{
		$(obj).mouseover(function()
		{
			$this = $($text.get(i));
			$text.not($this).each(function(e, obj2)
			{
				$(obj2).hide();
			});
			$($this).show();
		});
	});
	$text.not($($text.get(0))).each(function(e, obj2)
	{
		$(obj2).hide();
	});

});