$(document).ready(function()
{

$(".active").show();
$(".unactive").hide();

    $(".link").mouseover(function(){
        
        var index = $(".link").index(this);
        $(".active").hide();
        $(".unactive").hide();
        $(".unactive").eq(index).show();

    });
    
    $(".aktualny").mouseover(function(){
        
        $(".unactive").hide();
        $(".active").show();

    });
   
   $("#MENU_GLOWNE").mouseleave(function(){

        $(".unactive").hide();
        $(".active").show();

   });

});

