
    $(document).ready(function(){
        var tinyurlSelected = false;
                
        $("#tinyurl").focus(function(){               
            if ( !tinyurlSelected ) {        	
                // Select input field contents
                this.select();
                tinyurlSelected = true;
            }            
        });
        
        $(".comment-type-list li").click(function() {
            
            // select new tab
            $(".comment-type-list li").removeClass("selected");
            $(this).addClass("selected");
            
            // show new comment list
            var arr = (this.id).split("-");
            $(".commentlist").hide(); 
            $("#"+arr[2]+"-comment-list").show();
            
            return false;
        });  
        
    });

    
    

