// JavaScript Documentvar d = new Date();
var d = new Date();
var cYear= d.getFullYear();

//chose to do it this way so I wouldn't have the hash mark when clicking
function toggleMe(obj) {
	var el = document.getElementById(obj);
	if ( el.style.display != 'block' ) {
		el.style.display = 'block';
	}
	else {
		el.style.display = '';
	}
}

