		$(function(){// Инициализация подсказки
			$('body')
				.append('<img id="poster"/>');
			var
				$idPoster=$('#poster'),
				visible=false;
			$idPoster
				.load(function(){
					if(visible===true)
						$idPoster
							.css('margin-top',-5-$idPoster.height())
							.addClass('visible');
				});
			$('#posterArea [data-img]')
				.live('mouseover',function(event){
					visible=true;
					$idPoster
						.css({
							left:(event.pageX+5)+'px',
							top:(event.pageY)+'px'
						})
						.attr('src',$(this).attr('data-img'));
				})
				.live('mousemove',function(event){
					$idPoster
						.css({
							left:(event.pageX+5)+'px',
							top:(event.pageY)+'px'
						});
				})
				.live('mouseout',function(){
					$idPoster
						.removeClass('visible');
					visible=false;
				});
		});
