WR.util.namespace('WR.bogushtime');

WR.bogushtime.common = {
    init:function () {
        WR.ui.overlay.container = $('.bt-container')[0];

        this.initOtherProjectsLink();
    },

    initOtherProjectsLink:function () {
        $('#bt-other-projects-link').click(function (e) {
            e.preventDefault();
            $('#bt-other-projects-submenu').fadeToggle(300);
        });

        $('#bt-other-projects-submenu').mouseleave(function () {
            $('#bt-other-projects-submenu').fadeOut(150);
        });
    }
};

$(function () {
    WR.bogushtime.common.init();
});

