var KL = {};

KL.init = function() {
	// All items to be setup on page load

	KL.obfEmails()
}


KL.obfEmails = function() {
	// Email obfuscator.
	// Write email into all <span> tags with class of obfuscate
	var prefix = "stinkydog1"
	var suffix = "hotmail.com"
	
	$('.cloakmail').html('<a href="mailto:' + prefix + '@' + suffix + '">' + prefix + '@' + suffix + '</a>');

}

$(document).ready(KL.init);

