$(document).ready(function() {
    //$("#intro_footer").hide();
    $("#lang a").click(function(){
        // Blocco l'href del link
        return false;
    });
    $("#lang a").click(function(){
        $lang=($(this).attr("id")).replace("open_","");
        $("#intro_footer").fadeOut("slow",function() {

            $("#intro_footer").removeClass();
            $("#intro_footer").addClass($lang);

            $("#link_company").attr ("href", "company/index.php?lang=" +$lang);
            $("#link_products").attr("href", "products/index.php?lang="+$lang);

            //var regex = new RegExp("?lang=[^&]");
            $("#intro_footer").fadeIn("slow");
    
        });
    });
});
