﻿$(document).ready(function() {

$('#CategoryMenu > li').mouseover(function() {

        $(this).find('ul.CategoryMenuSubCategories').show();

    });
    
$('#CategoryMenu > li').mouseout(function() {

        $(this).find('ul.CategoryMenuSubCategories').hide();

    });
    
});
