﻿
$(document).ready(function() {
    $(".menu_h").hover(function() {
    $(".menu_second", this).animate({ opacity: "show" }, 100);
    }, function() {
    $(".menu_second", this).animate({ opacity: "hide" }, 100);
    });
});

