var width = "75";

function showmenu(elmnt)
{
    document.getElementById(elmnt).style.visibility="visible";
    changeColorOn('td'+elmnt);
    changeColorOn('link'+elmnt);
    document.getElementById(elmnt+'img').src ="~/media/Widex COM/intershop/media/youthsite/images/menu_bullet_rollover.ashx"
}
function showmenuHU(elmnt)
{
    changeColorOn(elmnt);
    changeColorOn('link'+elmnt);
    document.getElementById(elmnt+'img').src ="~/media/Widex COM/intershop/media/youthsite/images/menu_bullet_rollover.ashx"
}

function showsubmenu(elmnt,offsettop)
{
    document.getElementById(elmnt).style.top= offsettop*17 - 31 ;
    document.getElementById(elmnt).style.visibility="visible"
    changeColorOnSub('td'+elmnt);
    changeColorOnSub('link'+elmnt);
}

function changeImageOn(elmnt){
    document.getElementById(elmnt).src="~/media/Widex COM/intershop/media/icon_material_main/a_arrow10x10_mo_youth.ashx";
}

function changeImageOff(elmnt){
    document.getElementById(elmnt).src="~/media/Widex COM/intershop/media/icon_material_main/a_arrow10x10_youth.ashx";
}

function changeColorOn(elmnt){
    document.getElementById(elmnt).style.background="#64c7de";
}
    function changeColorOnSub(elmnt){
document.getElementById(elmnt).style.background="#5aa3b5";
}

function changeColorOnTwo(elmnt1,elmnt2){
    document.getElementById(elmnt1).style.background="#2385a0";
    document.getElementById(elmnt2).style.background="#2385a0";
}

function changeColorOff(elmnt){
    document.getElementById(elmnt).style.background="#005A74";
}
function changeColorOffTwo(elmnt1,elmnt2){
    document.getElementById(elmnt1).style.background="#5aa3b5";
    document.getElementById(elmnt2).style.background="#5aa3b5";
}

function hidemenuHU(elmnt)
{
    changeColorOff(elmnt);
    changeColorOff('link'+elmnt);
    document.getElementById(elmnt+'img').src ="~/media/Widex COM/intershop/media/youthsite/images/menupoints.ashx"
}

function hidemenu(elmnt)
{
    document.getElementById(elmnt).style.visibility="hidden"
    changeColorOff('td'+elmnt);
    changeColorOff('link'+elmnt);
    document.getElementById(elmnt+'img').src ="~/media/Widex COM/intershop/media/youthsite/images/menupoints.ashx"
}

function hidesubmenu(elmnt)
{
    document.getElementById(elmnt).style.visibility="hidden"
    changeColorOff('td'+elmnt);
    changeColorOff('link'+elmnt);
}
