// JavaScript Document

$(document).ready (function () {
	
	$('#shop .shop-tooltip').hide();
	
	$('#shopbox .shopcontent .shop-item').mouseover(
		function () {
			var tooltip = $('#shopbox .shop-tooltip');
			$(this).append(tooltip);
			var label = $(this).find('a img').attr('alt');
			$(tooltip).html(label);
			$(tooltip).show();
		}
	);
	
	$('#shopbox .shopcontent .shop-item').mouseout(
		function () {
			$('#shop .shop-tooltip').hide();
		}
	);
	
});

