{script} {literal} addInvitation = function( nodes ) { var $nodes, start, complete; $nodes = $(nodes); start = function() { var $self = $(this); if ( $self.val() == $self.attr('inv') ) { $self.val(''); } $self.removeClass('invitation'); }; complete = function() { var $self = $(this); if ( !$self.val() ) { $self.val($self.attr('inv')); $self.addClass('invitation'); } }; $nodes.focus(start); $nodes.blur(complete); }; addInvitation($('#ci-message')); {/literal} {/script} {style} {literal} .avatar_select_list{ height:480px; width: 547px; text-align:left; padding:0 8px; } .avatar_select_list .ow_user_list_picture{ height:45px; } .avatar_select_list .ow_user_list_data { width: 190px; overflow: hidden; } .avatar_select_list .ow_user_list_item{ cursor:pointer; } .avatar_select_list .ow_item_set2{ width:48%; } .avatar_select_list .asl_users{ height: 430px; overflow-y:scroll; } html .ow_footer { display: none; } {/literal} {/style}