$(document).ready(function(){

    $(".switch-language").click(function(event){
        event.preventDefault();
        $.post($(this).attr('href'),function(data){
            if (data != "false"){
                window.location = data;
            }
        });
        
        return false;
    });

});

