$(document).ready(function(){
    
    $('.promo-cnt ul li').each(function(){
		var _x = 0;
		var _y = 0;
		var _tooltip = $(this).find('div.tooltip');
		$(this).mouseenter(function(e){
			_x = $(this).offset().left;
			_y = $(this).offset().top;
			_tooltip.css({left:e.pageX - _x + 10, top:e.pageY - _y + 10});
			$(this).addClass('show-tooltip');
		}).mouseleave(function(){
			$(this).removeClass('show-tooltip');
		}).mousemove(function(e){
			_tooltip.css({left:e.pageX - _x + 10, top:e.pageY - _y + 10});
		});
	});
	
    $('strong.tooltip').mouseover (function() {
		$(this).parent().parent().removeClass('show-pop');
    });
/*
	$('.promo-cnt ul li').click(function(){
		var _href = $(this).find('a').attr('href');
		if(_href) window.location = _href;
	});
	$('.promo-cnt ul li a').click(function(){
		return false;
	});
*/
});
