$(document).ready(function() {
        $("#bottom-header").scrollable();

        $("div[rel]").overlay({
        fixed: false,
        top: '5%',
	mask: {
		color: '#000000',
		loadSpeed: 1000,
		opacity: 0.6
                
	}


        });
        initSubmenu();
        init();


});

function initSubmenu(){
    if($.cookie('sub-menu')=='vyrobcovia'){
        activate(2);
    }
}
function init(){
    if ($('#left').height() < $('#middle').height()){
        if ($('#middle').height() < $('#right').height()){
            $('#left').css("height",$('#right').height()+"px");
            $('#middle').css("height",$('#right').height()+"px");
        }
        else{
            $('#right').css("height",$('#middle').height()+"px");
            $('#left').css("height",$('#middle').height()+"px");
        }
    }
    else{
        if ($('#left').height() < $('#right').height()){
            $('#left').css("height",$('#right').height()+"px");
            $('#middle').css("height",$('#right').height()+"px");

        }
        else{
            $('#right').css("height",$('#left').height()+"px");
            $('#middle').css("height",$('#left').height()+"px");
        }
    }


}


function activate(id){
    if (id==1){
        $('#he1').attr('class','small active');
        $('#he2').attr('class','small');
        $('#vyrobcovia-ul').hide();
        $('#produkty-ul').show();
        $.cookie('sub-menu', 'produkty',{expires: 7, path:'/'});
    }
    else{
        $('#he2').attr('class','small active');
        $('#he1').attr('class','small');
        $('#vyrobcovia-ul').show();
        $('#produkty-ul').hide();
        $.cookie('sub-menu', 'vyrobcovia',{expires: 7, path:'/'});
    }
    init();

    return false;
}
