﻿$(document).ready(function ()
{
    $("#menuteams").hover(function () { ShowSubMenuTeams(); }, function () { HideSubMenuTeams(); });
    $("#submenuTeams").hover(function () { ShowSubMenuTeams(); }, function () { HideSubMenuTeams(); });

    $("#menuclub").hover(function () { ShowSubMenuClub(); }, function () { HideSubMenuClub(); });
    $("#submenuClub").hover(function () { ShowSubMenuClub(); }, function () { HideSubMenuClub(); });

    $("#menuandere").hover(function () { ShowSubMenuAndere(); }, function () { HideSubMenuAndere(); });
    $("#submenuPages").hover(function () { ShowSubMenuAndere(); }, function () { HideSubMenuAndere(); });

});

function ShowSubMenuTeams()
{
    $("#submenuTeams").show();
}
function HideSubMenuTeams()
{
    $("#submenuTeams").hide();
}

function ShowSubMenuClub()
{
    $("#submenuClub").show();
}
function HideSubMenuClub()
{
    $("#submenuClub").hide();
}

function ShowSubMenuAndere()
{
    $("#submenuPages").show();
}
function HideSubMenuAndere()
{
    $("#submenuPages").hide();
}
