$(document).ready(function(){
    $("#bottom").corner("round");
    $("#left-menu").corner("round");

    if($.browser.msie && $.browser.version == "6.0")
    {
        $.ifixpng('/img/pixel.gif');
        $('.lupapng').ifixpng();
    }

    $(".lupapng").parent().parent().css("text-align","center");

    $(".lupa").hover(function(){
        $(this).next().show();
        $(this).parent().parent().nextAll().children(".image-middle").css("z-index","-1");
        $("#bottom").css("z-index","-1");
    },function(){
        $(this).next().hide();
        $(this).parent().parent().nextAll().children(".image-middle").css("z-index","1");
        $("#bottom").css("z-index","1");
    });

    $(".lupapng").hover(function(){
        $(this).next().show();
        $("#bottom").css("z-index","-1");
    },function(){
        $(this).next().hide();
        $("#bottom").css("z-index","1");
    });

    $('#aktiv-menu').children("img").attr("src","/img/blue-arrow.jpg");
});

