﻿// JavaScript Document

$(document).ready(function(){
$("#related").show();
$("#hide6").show();
$("#show6").hide();
$("#latestnews").show();
$("#hide").show();
$("#show").hide();
});
 
function HideContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
}

function ShowContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "block";

}

function ReverseContentDisplay(d) {
if(d.length < 1) { return; }
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
else { document.getElementById(d).style.display = "none"; }
}

function closegap() {
document.getElementById('rightgraphic').style.marginTop = '20px';
}

function increasegap() {
document.getElementById('rightgraphic').style.marginTop = '180px';
}
