$(document).ready( function(){
	$('.catalog-item td.center').hover(
										function()
										{
											var offset = $(this).offset();
											$('.cat-big-img', this).css('position', 'absolute');
											$('.cat-big-img', this).css('top', offset.top);
											$('.cat-big-img', this).css('left', offset.left );
											$('.cat-big-img', this).css('display', 'block');
										},
										function()
										{
											$('.cat-big-img', this).css('display', 'none');
										}
									);
});



