spammers = function() {
	return("info");
}
eat = function() {
	return ("justincaryphotography");
}
rottenEggs = function() {
	return(".com");
}
content = function() {
	//GET THE MESSAGE?
	return(spammers() + "@" + eat() + rottenEggs());
}
prefix = function() {
	return("<a href=\"mailto:");
}
postfix = function() {
	return("\">" + content() + "</a>");
}
insertMailLink = function() {
	document.getElementById("narf").innerHTML = prefix() + content() + postfix();
}

