﻿
function showDialog(id)
{
    $('.bubble').hide();
    $('#' + id).show();
}

function hideDialogs() {
    $('.bubble').hide();
}

function init() {
    setMenuHovers();
    $(document).click(function() {
        hideDialogs();
    });
    
}

function goTo(url) {
    location.href = url;
}
function setMenuHovers() {
    $('.menuLink').hover(function() {
        $(this).children('.menu, .menuRight').show();
    }, function() {
        $(this).children('.menu, .menuRight').hide();
    });

    $('.menuItem').hover(function() {
        $(this).addClass('menuItemHover');
    }, function() {
        $(this).removeClass('menuItemHover');
    });
    
}
