$(document).ready(function(){

$("#mitem2").hide();
$("#mitem14").hide();
$("#mitem13").hide();
$("#mitem12").hide();
$("#mitem11").hide();
$("#mitem1").hide();


$("#mbutton1").click(
  function () {
    $("#mitem1").toggle("slow");
	$("#mitem11").hide("slow");
	$("#mitem12").hide("slow");
	$("#mitem13").hide("slow");
	$("#mitem14").hide("slow");
  }
);

$("#mbutton11").click(
  function () {
    $("#mitem11").toggle("slow");
	$("#mitem12").hide("slow");
	$("#mitem13").hide("slow");
	$("#mitem14").hide("slow");
  }
);

$("#mbutton12").click(
  function () {
    $("#mitem12").toggle("slow");
	$("#mitem11").hide("slow");
	$("#mitem13").hide("slow");
	$("#mitem14").hide("slow");
  }
);

$("#mbutton13").click(
  function () {
    $("#mitem13").toggle("slow");
	$("#mitem11").hide("slow");
	$("#mitem12").hide("slow");
	$("#mitem14").hide("slow");
  }
);

$("#mbutton14").click(
  function () {
    $("#mitem14").toggle("slow");
	$("#mitem11").hide("slow");
	$("#mitem12").hide("slow");
	$("#mitem13").hide("slow");
  }
);

$("#mbutton2").click(
  function () {
    $("#mitem2").toggle("slow");
  }
);

$("#mdiv11").hover(
  function () {
    $("#mitem1").show("slow");
    $("#mitem11").show("slow");
  },
  function () {
  }
);

$("#mdiv12").hover(
  function () {
    $("#mitem1").show("slow");
    $("#mitem12").show("slow");
  },
  function () {
  }
);

$("#mdiv13").hover(
  function () {
    $("#mitem1").show("slow");
    $("#mitem13").show("slow");
  },
  function () {
  }
);

$("#mdiv14").hover(
  function () {
    $("#mitem1").show("slow");
    $("#mitem14").show("slow");
  },
  function () {
  }
);

$("#mdiv2").hover(
  function () {
    $("#mitem2").show("slow");
  },
  function () {
  }
);

$("#mdiv1").hover(
  function () {
    $("#mitem1").show("slow");
  },
  function () {
  }
);

});
