/* profile.js for notadouche.com
 * 
 * Depends on base.js
 *
 * Adam Lloyd, 16 Feb 2009
 */

function profile_init() {
    var profile_uid = document.getElementById('uid').innerHTML;
    var uid = get_uid();
    if (profile_uid == uid) {
	document.getElementById('owned').className = 'visible';
    }
}

