function lineUpStuff() {
  // this is to line up the sublinks to the main text content on the right side
  var heightMatch = document.getElementById('text').offsetHeight;
  document.getElementById('sublinks').style.height = heightMatch-146 + "px";
}

addLoadEvent(lineUpStuff);

function rand(start, end) {
    return Math.floor(Math.random()*((end+1)-start)) + start;
}

function sendMailTo(name, company, domain) {
  locationstring = 'mai' + 'lto:' + name + '@' + company + '.' + domain;
      window.location.replace(locationstring);
}

function toggle(obj) {
	var el = document.getElementById(obj);
	if ( el.style.display != 'none' ) {
		el.style.display = 'none';
	}
	else {
		el.style.display = '';
	}

  var link = document.getElementById(obj+"link");
  if (link.innerHTML == 'Hide Info') {
    link.innerHTML = 'More Info';
  } else {
    link.innerHTML = 'Hide Info';
  }

  return false;
}

