$(document).ready(function(){
	$("#menutop li").hover(function() {
		$(this).toggleClass("hovered");
	});
	$("#action-move-fixed").click(function() {
		$(".gm-action-descr").hide();
		$("#action-move-fixed-descr").show();
	});
	$("#action-move-free").click(function() {
		$(".gm-action-descr").hide();
		$("#action-move-free-descr").show();
	});
	$("#action-move-towards").click(function() {
		$(".gm-action-descr").hide();
		$("#action-move-towards-descr").show();
	});
});


