﻿$(document).ready(function () {
    $("#topnav a").mouseover(function () {
        $("." + this.title.toLowerCase()).css("display", "block");
        $("." + this.title.toLowerCase()).mouseover(function () {
            $(this).css("display", "block");
        });
        $("." + this.title.toLowerCase()).mouseout(function () {
            $(this).css("display", "none");
        });
        $(this).mouseout(function () {
            $("." + this.title.toLowerCase()).css("display", "none");
        });
    });
});
