﻿$(document).ready(function () {
    /* Menu */
    $('.nav li').has('ul').hover(function () {
        $(this).addClass('current').children('ul').fadeIn(500);
    }, function () {
        $(this).removeClass('current').children('ul').hide();
    });
});

