var j = jQuery.noConflict();

j(document).ready( function () {
    j('#profile_url_textbox, #profile_html').click( function () {
        j(this).select();    
    });
    
    j('#profile_url_textbox, #profile_html').focus( function () {
        j(this).select();    
    });
});