﻿/*mouseover functions*/
var isOpen = false;
$(function () {
    $('.menu').hide();

    $('.content-top').mouseover(function () {
        $('.menu  , .bullet-under-menu').stop();
        $('.menu').animate({ height: 37 }, "slow", "", function () { isOpen = true; });
        $('.bullet-under-menu').animate({ top: 37 }, "slow", "", function () { isOpen = true; });

    });
    $('.content-top').mouseout(function () {
        $('.menu , .bullet-under-menu').stop();
        $('.menu').animate({ height: 0 }, "slow", "", function () { isOpen = false; });
        $('.bullet-under-menu').animate({ top: 11 }, "slow", "", function () { isOpen = false; });

    });


});
