﻿$(function() {
    $('.topMenu li').hover(function() {
        $(this).children('ul').stop(true, true).show();
    }, function() {
        $(this).children('ul').stop(true, true).hide();
    });
    //$("#webmenu li li:has(ul) > a").addClass("arrow");
});
