HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/martyknows.com/wp-content/themes/dark-wood/js/dark-wood.js
function showcomments() {
    var $j = jQuery.noConflict();
    document.getElementById('pings-tab').style.borderBottom="1px #271707 solid";
    document.getElementById('comments-tab').style.borderBottom="none";
    document.getElementById('pings-tab').style.backgroundColor="#311e0b";
    document.getElementById('comments-tab').style.backgroundColor="#3b1c0d";
    document.getElementById('pings-tab').style.cursor="pointer";
    document.getElementById('comments-tab').style.cursor="default";
    $j('#pings').slideUp("fast");
    $j('#comments').slideDown("fast");
}

function showpings() {
    var $j = jQuery.noConflict();
    document.getElementById('comments-tab').style.borderBottom="1px #271707 solid";
    document.getElementById('pings-tab').style.borderBottom="none";
    document.getElementById('comments-tab').style.backgroundColor="#311e0b";
    document.getElementById('pings-tab').style.backgroundColor="#3b1c0d";
    document.getElementById('comments-tab').style.cursor="pointer";
    document.getElementById('pings-tab').style.cursor="default";
    $j('#comments').slideUp("slow");
    $j('#pings').slideDown("slow");
}

function showsharelist() {
    var $j = jQuery.noConflict();
    if(document.getElementById('sharesign').value == "+") {
        document.getElementById('sharesign').value = "-";
        $j('#shareicons').slideDown("slow");
    } else {
        document.getElementById('sharesign').value = "+";
        $j('#shareicons').slideUp("slow");
    }
}