/**
 * Creates and obscures emails
 *
 * For protection from spam-bots.
 *
 * @author		Rob Hori
 * @requires	jQuery
 * @returns		HTMLElement
 */
$('address .contact-info').each(function(){
	var $this	= $(this),
		txt		= $(this).attr('title'),
		parts	= txt.split(' '),
		address	= parts[1] + '&#64;' + parts[2] + '.' + parts[0];
	
	$this.removeAttr('title').append('<br /><a href="mai' + 'lto:' + address + '">' + address + '</a>');
});
