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