(function ($) {
	$(function () {
		$('.promo_area_item .show_details').hide();
		var showing = false;

		var self = $('.promo_area_item');
		var boxPos = self.offset();
		var width = self.width()
		var height = self.height()

		var i = 0;

		$(document).mousemove(function (e) {
			var mouseX = e.clientX + $(document).scrollLeft();
			var mouseY = e.clientY + $(document).scrollTop();

			if (boxPos.left < mouseX && mouseX < (boxPos.left + width) &&
					boxPos.top < mouseY && mouseY < (boxPos.top + height)) {
				// console.log('show: true, ', showing);
				if (!showing) {
					showing = true;
					$('.on .show_details').fadeIn(function () {
					});
				}
			} else {
				if (showing) {
					$('.show_details').fadeOut(function () {
						showing = false;
					});
				}
			}
			return false;
		});
	});
})(jQuery);

