// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function handle_user_partial() {
	var login_cookie = readCookie('login');
/*    var profileLink = document.getElementById('profile_link');
    profileLink.href = '/member/' + login_cookie; */
    document.getElementById('welcome_username').firstChild.nodeValue=login_cookie;
}