﻿/// <reference path="jquery-1.4.1-vsdoc.js" />


function OnPageLoad() {
    $('.leftmenu1').hide();
    $('.leftmenu2').hide();
    $('.leftmenu3').hide();
    $('.leftmenu4').hide();
    $('.leftmenu5').hide();

    $('#ma1').bind('mouseover', function() {
        $('.leftmenu1').show();
    });
    $('#ma2').bind('mouseover', function() {
        $('.leftmenu2').show();
    });
    $('#ma3').bind('mouseover', function() {
        $('.leftmenu3').show();
    });
    $('#ma4').bind('mouseover', function() {
        $('.leftmenu4').show();
    });
    $('#ma5').bind('mouseover', function() {
        $('.leftmenu5').show();
    });


    $('#ma1').bind('mouseout', function() {
        closeAll();
    });
    $('#ma2').bind('mouseout', function() {
        closeAll();
    });
    $('#ma3').bind('mouseout', function() {
        closeAll();
    });
    $('#ma4').bind('mouseout', function() {
        closeAll();
    });
    $('#ma5').bind('mouseout', function() {
        closeAll();
    });



    $('.leftmenu1').bind('mouseover', function() {
        $('.leftmenu1').show();
    });

    $('.leftmenu2').bind('mouseover', function() {
        $('.leftmenu2').show();
    });

    $('.leftmenu3').bind('mouseover', function() {
        $('.leftmenu3').show();
    });

    $('.leftmenu4').bind('mouseover', function() {
        $('.leftmenu4').show();
    });

    $('.leftmenu5').bind('mouseover', function() {
        $('.leftmenu5').show();
    });



    $('.leftmenu1').bind('mouseout', function() {
    closeAll();
    });

    $('.leftmenu2').bind('mouseout', function() {
    closeAll();
    });

    $('.leftmenu3').bind('mouseout', function() {
    closeAll();
    });

    $('.leftmenu4').bind('mouseout', function() {
    closeAll();
    });

    $('.leftmenu5').bind('mouseout', function() {
    closeAll();
    });

}

function closeAll()
{
        $('.leftmenu1').hide();
        $('.leftmenu2').hide();
        $('.leftmenu3').hide();
        $('.leftmenu4').hide();
        $('.leftmenu5').hide();
}