$().ready(function() {
	$('#help').css("opacity", 0);
	$(".cube").hover(function() {
		if ($('.text',this).html()) {
			$('#help')
				.find('.text')
				.html($('.text', this).html())
				.end()
				.css({display:"block",left: $(this).offset().left+35, top: $(this).offset().top+13-$('#help').height() })
				.stop().animate({ opacity:1 }, "normal");
			
			$('.gray', this).stop().animate({ opacity:0 }, "normal");
		}	
	},function() {
		$('.gray', this).stop().animate({ opacity:1 }, "normal");
		
		$('#help').stop().animate({ opacity:0 }, "normal", function() { $(this).css("display", "none") });
	});

});

function show() {
	$('.cube-box .gray').stop().animate({ opacity:0 }, "normal");		
}
function hide() {
	$('.cube-box .gray').stop().animate({ opacity:1 }, "normal");		
}