﻿$(document).ready(function () {
    $("#navigation ul li a").mouseenter(function () {
        if (!$(this).parent().hasClass("primary-active") && !$(this).parent().hasClass("secondary-active")) {
            var highlight = $(this).parent().find(".highlight");

            $(highlight).animate({
                height: "54px",
                top: "0px"
            });
        }
    }).mouseleave(function () {
        if (!$(this).parent().hasClass("primary-active") && !$(this).parent().hasClass("secondary-active")) {
            var highlight = $(this).parent().find(".highlight");

            $(highlight).animate({
                height: "0px",
                top: "54px"
            });
        }
    });
});
