  $(document).ready(function () {
    $(".menues").mouseenter(function (){
      var curid;
      curid = this.id;
      $("p.info").text(curid);
      $("#"+curid).stop();
      $("#"+curid+" img.mimg").stop();
      $("#"+curid+" div.transbox").stop(true,true);
      $("#"+curid).animate({
        height: "194px",
        width: "285px"
        },800);
      $("#"+curid+" img.mimg").animate({
        height: "186px",
        width: "277px",
        borderWidth: "4px"
        },800);
      $("#"+curid+" div.translist").animate({
        opacity: 0.1
        }).show(function () {
        $("#"+curid+" div.transbox").animate({
          width: $("#"+curid+" div.translist").width(),
          height: $("#"+curid+" div.translist").height(),
          opacity: 0.6
          },1000);
        $("#"+curid+" div.translist").animate({
          opacity: 1
          },1500);
        });
    });
    $(".menues").mouseleave(function (){
      var curid;
      curid = this.id;
      $("#"+curid).stop();
      $("#"+curid+" img.mimg").stop();
      $("#"+curid+" div.translist").stop(true,true);
      $("p.info").text(curid);
      $("#"+curid+" div.translist").fadeOut(800);
      $("#"+curid+" div.transbox").animate({
          width: "0px",
          height: "0px",
          opacity: 0.0
          },800);
      $("#"+curid).animate({
        height: "90px",
        width: "135px"
        },800);
      $("#"+curid+" img.mimg").animate({
        height: "88px",
        width: "131px",
        borderWidth: "2px"
        },800);
    });
});

