//javascript for oughtful

//generates e-mail link
function mailto(linktext){
 if (!linktext) linktext = 'matthewhollett@gmail.com';
 document.write('<a href="mailto:matthewhollett@gmail.com">' + linktext + '</a>');
}

//drop-down navigation
function moveto(list) {
 if (list.options[list.selectedIndex].value != "") {
  location.href = list.options[list.selectedIndex].value;
 }
}

