var activeTooltip = null;

$(function () {
	$('.item_tooltip').appendTo('body');
	
	$('.items_table .item_icon').hover(
		function() { 
			activeTooltip = $('#' + $(this).attr('rel'));
		},
		function() { 
			activeTooltip.hide();
			activeTooltip = null;
		}
	);
	
	$(document).mousemove(function(e) {			
		if (activeTooltip != null) {
			activeTooltip.css({
				left: e.pageX - activeTooltip.outerWidth() - 5, 
				top: e.pageY + 10
			});
			
			if (activeTooltip.is(':hidden')) {
				activeTooltip.show();
			}
		}
	}); 
});

$(document).ready(function() {
		$('a.render').each(function() {
			$(this).flash({
				src: $(this).attr('href'),
				width: 260,
				height: 390,
				wmode: 'transparent'
		});
	});
});
