$(".Enllac").live("click", function(e) 
{
    var Enllac = $(this).attr("href");
    e.preventDefault(); // No fa cas del Href del link, mana el seu
    $.ajax(
        {
            type: "post",
            url: Enllac,
            context: document.body,
            success: function(ret) {
                $(".Content").html(ret);
            }
        }
    );
});
/*****************************************************************************************************************/
$(".EnllacCalendari").live("click", function(e) {
    var Enllac = $(this).attr("href");
    e.preventDefault(); // No fa cas del Href del link, mana el seu
    $.ajax(
        {
            type: "post",
            url: Enllac,
            context: document.body,
            success: function(ret) {
                $(".contingut-mig").html(ret);
            }
        }
    );
});
/*****************************************************************************************************************/
