﻿$(function () {
    $('#header-nav li').bind('mouseover', function() {
        if ($(this).children('ul').length > 0)
        {
            $(this).children('ul').show();
        }
    });
    $('#header-nav li').bind('mouseout', function () {
        if ($(this).children('ul').length > 0) {
            $(this).children('ul').hide();
        }
    });
});
