﻿//常见的下拉菜单
//版权所有：陈海波
//创建时间:2010-10-28
$(function () {
    $(".FirstMenu").hover(function () {
        var rel = $(this).attr("rel");

        var offset = $(this).position();
        var width = 70;
        var index = $(this).index();
        var top = offset.top + 40;
        var left = offset.left;
        $("#" + rel).css({ top: top + "px" });
        $("#" + rel).css({ left: left+index*width + "px" });
        $("#" + rel).show();
    }, function () {
        var rel = $(this).attr("rel");
        $("#" + rel).hide();
    });

    //鼠标移动到菜单上
    $(".MenuList").hover(function () {
        $(this).show();
    }
  , function () {
      $(this).hide();
  });
})

