$(document).ready(function() {
        function resizeBg() {
            
                $("#alt").height(
                    $(window).height() - (
                        $("#ust").height() + ($(".serit").height()*2) + $("#orta").height()
                    )
                );
                    
                //$("#bg").width($(window).width());
                
                $("#bg").height($("#orta").height());
                $("ul#nav,ul#lang").css('top',$("#ust").height() + ($(".serit").height()*2)+50);
                $("#orta").css('text-align','center');
                $("#kutu").css('text-align','left');

        }
        $(window).resize(resizeBg);
        resizeBg();
});
