$(function(){
    $(".openProfil").click(function(e){
        e.preventDefault();
        openProfil($(this).find(".ui-icon").text());    
        
        
    });    
    
    $(".openNachricht").click(function(e){
        location.href = CluburlaubURL+"/meine-seite/nachricht/"+$(this).find(".ui-icon").text()+"/";
    });
});

function openProfil(userId)
{
    $("#userDialog").remove();
    var dialog = $('<div id="userDialog"></div>');
    
        
    dialog.dialog({
        title: "Profil wird geladen ...",
        width:650,
        height:400,
        open : function(){
            $.get(strAjaxPfad+"user.ax.php",{
                action : "userProfil",
                userId : userId
            },function(data){
                dialog.html(data);
                var userName = dialog.find("span.param.name").text();
                dialog.dialog({title: "Profil von "+userName})
            })
        }
    });
    
}
