﻿$(document).ready(function () {
    $(".vbig a").click(function (e) {
        if (e.button !== 0) {
            return;
        }
        e.preventDefault();
        var that = $(this).parent().next();
        that.toggle();
        return false;
    });
    $(".hmenu-trigger").mouseover(function (e) {
        if (e.button !== 0) {
            return;
        }
        e.preventDefault();
        var that = $(this).next();
        that.show();
        return false;
    }).mouseout(function (e) {
        if (e.button !== 0) {
            return;
        }
        e.preventDefault();
        var that = $(this).next();
        that.hide();
        return false;
    });
    $(".hmenu-list").mouseover(function (e) {
        if (e.button !== 0) {
            return;
        }
        e.preventDefault();
        $(this).show();
        return false;
    }).mouseout(function (e) {
        if (e.button !== 0) {
            return;
        }
        e.preventDefault();
        $(this).hide();
        return false;
    });
});
