$(document).ready(function(){     

    $('#pl').click(function(){
        $.get('/public/ajax/control.php',{
            setpl:1
        },function(data){
            if(data){
        window.location=("http://www.transport-cegielka.com/index.html");
    }
        }, "text");
   
    });
    $('#en').click(function(){
     $.get('/public/ajax/control.php',{
         seten:2
     },function(data){
             if(data){
       window.location=("http://www.transport-cegielka.com/en/main.html");
        }
        
    }, "text");
    $(this).addClass('active');
     $('#pl').removeClass('active');
    });
})
