﻿$(function() {
    //$('li.dropdown').find('ul').hide();
    $('li.dropdown').hover(
        function() {
            $(this).find('ul').animate({
                top: '23px',
                opacity: 'show'
            }, 'fast');
        },
        function() {
            $(this).find('ul').animate({
                top: '18px',
                opacity: 'hide'
            }, 'fast')
        });
    $('li.dropdown ul li a').hover(
        function() {
            $(this).animate({
            color: '#666'
            }, 'fast')
        },
        function() {
            $(this).animate({
            color: '#000'
            }, 'fast')
        });
});
