﻿$(document).ready(function () {
    $('#mnuService').hover(function () { $('#ServiceItems').show(200); }, function () { $('#ServiceItems').hide(100); });
    $('#mnuCompany').hover(function () { $('#CompanyItems').show(200); }, function () { $('#CompanyItems').hide(100); });
});

