﻿/* Common js */

// top menu
$(document).ready(function() {
    $("#topNav > li").mouseover(function() {
        $(this).find("ul").fadeIn();
        $(this).find("a:first").addClass("open");
    }).mouseleave(function() {
        $(this).find("ul").fadeOut();
        $(this).find("a:first").removeClass("open");
    });
});