$(document).ready(function(){
    var hdoc = $(document).height();
    var hpanelsl = 0;
    hpanelsl = (hdoc < 890) ? hdoc -60 -47 : 783;
    var hpdfoot = hpanelsl + 47;
    $(".panel_main_sl, .panel_mainimg, .panel_subimg,.panel_subimg_zerno,.panel_sl").css({
        height:hpanelsl+'px'
        });
    $(".panel_footer").css({
        'margin-top':hpdfoot+'px',
        top:'0px'
    });
    $(".main_menu").css({
        'margin-bottom':(hdoc-hpdfoot-30)+'px'
        });
    $(".main_menu li").click(function(){
        var href = $(this).find("a").attr("href");
        if (href)	 window.location = href;
    });

    $(document).pngFix();


    function show_zerno() {
        $("#pano_sl").animate({
            'margin-left': "0"
        }, 500);
        $(".topmenu_int a").removeClass("sel");
        $("a.item1").addClass("sel");
    }

    function show_selhoz() {
        $("#pano_sl").animate({
            'margin-left': "-100%"
        }, 500);
        $(".topmenu_int a").removeClass("sel");
        $("a.item2").addClass("sel");
    }

    $("a.item1, #sh_zerno").click(function(){
        if ($("a.item1").is(".sel"))
            {
                window.location = '/zerno'
                return false;
            }
        show_zerno();
        return false;
    });

    $("a.item2, #sh_selhoz").click(function(){
        if ($("a.item2").is(".sel"))
            {
                window.location = '/selhoz'
                return false;
            }
        show_selhoz();
        return false;
    });

    

});
