﻿/*横导航JS*/
$(document).ready(function () {
    $(".mainNav>ul>li>div").hide();
    $(".mainNav>ul>li>ul").hide();
});

$(function () {
    $(".mainNav>ul>li").mouseover(function () {
        $(this).children("div:first").show();
        $(this).children("ul:first").show();
    });

    $(".mainNav>ul>li").mouseout(function () {
        if ($(this).children("div:first").attr("rel") != "yes") {
            $(this).children("div:first").hide();
        }
        $(this).children("ul:first").hide();
    });
});
