// Setup namespace to avoid conflicts 
var LX = window.LX || {}; 
/** 
 * Create a mailto link in your document 
 * @param {String} container The id of the container for your link 
 * @param {String} addr The portion to the left of the 'at' symbol 
 * @param {String} domain The portion to the right of the 'at' symbol 
 * @param {String} text The text to appear for the link 
 */ 
LX.mailto = function(id, domain)  { 
 var n = document.getElementById(id); 
 if(!n ) return; 
 n.innerHTML = "(<a href='mailto:" + id + "@" + domain + "'>" + id + "@" + domain +
"</a>)" 
}; 
LX.contactMailto = function()  { 
 var n = document.getElementById("contactLlezelle"); 
 if(!n ) return; 
 var llezelleAddress = "llezelle";
 n.innerHTML = "<a href='mailto:" + llezelleAddress + "@" + "llezelle.com" + "'>Contact Llezelle</a>" 
}; 


