/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function colacaImagemAvatar(url){
    //  alert(url);
    $('#balaoAvatar img').attr('src',url);
    $('#balaoAvatar img').css("width", "33px");
    $('#balaoAvatar img').css("height", "44px");
    $('#balaoAvatar img').css("padding-top", "3px");
    $('#balaoAvatar img').css("padding-left", "3px");
    $('#galeriaCriar img').attr('src','imgs/buttons/btGaleria.png');
    $('#linkgaleriaCriar').attr('href','galeria.php');
    var new_cookie_user = readCookie("user").split("#");
    createCookie("user","",-1);
    var newcookievalue = new_cookie_user[0]+"#"+new_cookie_user[1]+"#"+url;
    createCookie("user",newcookievalue);
}



