File: /home/mmickelson/theflexguys.com/baronconstruct/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");
    }
}