var top = {};
with(top){
with({ my: function() { return this; } }){
with({ my: my(), ns: top }){
    // 初期化
    ns.initPage = function(){
    	// nothing to do
        return false;
    };
}}}

$(function(){
    var my = top;
    
    // 初期化
    my.initPage();

    /**
     * Event
     */
    $("#btn_memo_save").unbind('click').click(function(){
        return false;
    });
});
