$(document).ready(function(){

	jQuery.each($('.product-box'), function(index, value) {
		$(value).bind('mouseenter', function(){
			$('#item-details').hide();
			$('#item-details').find('IMG').attr('src', $(value).find('A.item-title').attr('rel'));
			$('#item-details').find('P A').html($(value).find('P A').html());
			$('#item-details').find('P.price').html($(value).find('P.price').html());
			$('#item-details').show();
		});
	});
});
