$(document).ready(function(){
$("#fk").mouseout(function(){
$("#magic-cube1").hide(0);
$("#magic-cube2").hide(0);
$("#magic-cube3").hide(0);
$("#magic-cube4").hide(0);
$("#magic-cube5").hide(0);
$("#magic-cube6").hide(0);
$("#magic-cube7").hide(0);
$("#magic-cube8").hide(0);
$("#magic-cube9").hide(0);
$("#fk").hide();
	});
$("#n1").mousemove(function(){
$("#fk").show();
$("#magic-cube1").show(0);
	});
$("#magic-cube1").mouseout(function(){
$(this).hide();
$("#fk").hide();
	});
$("#n2").mouseover(function(){
$("#fk").show();
$("#magic-cube2").show(0);
	});
$("#magic-cube2").mouseout(function(){
$(this).hide();
$("#fk").hide();
	});
$("#n3").mouseover(function(){
$("#fk").show();
$("#magic-cube3").show(0);
	});
$("#magic-cube3").mouseout(function(){
$(this).hide();
$("#fk").hide();
	});
$("#n4").mouseover(function(){
$("#fk").show();
$("#magic-cube4").show(0);
	});
$("#magic-cube4").mouseout(function(){
$(this).hide();
$("#fk").hide();
	});
$("#n5").mouseover(function(){
$("#fk").show();
$("#magic-cube5").show(0);
	});
$("#magic-cube5").mouseout(function(){
$(this).hide();
$("#fk").hide();
	});
$("#n6").mouseover(function(){
$("#fk").show();
$("#magic-cube6").show(0);
	});
$("#magic-cube6").mouseout(function(){
$(this).hide();
$("#fk").hide();
	});
$("#n7").mouseover(function(){
$("#fk").show();
$("#magic-cube7").show(0);
	});
$("#magic-cube7").mouseout(function(){
$(this).hide();
$("#fk").hide();
	});
$("#n8").mouseover(function(){
$("#fk").show();
$("#magic-cube8").show(0);
	});
$("#magic-cube8").mouseout(function(){
$(this).hide();
$("#fk").hide();
	});
$("#n9").mouseover(function(){
$("#fk").show();
$("#magic-cube9").show(0);
	});
$("#magic-cube9").mouseout(function(){
$(this).hide();
$("#fk").hide();
	});
});

