/*	smartwebstdio.com | sws.scripts.js */


//	email cloaking
//	ref: http://davidwalsh.name/email-protection-mootools-javascript-v2
window.addEvent('domready',function() {
	$$('.email').each(function(el) {
		var anchor = new Element('a', {
			href: 'mailto:' + el.get('rel').replace('|','@'),
			'class': el.get('class'),
			'html': el.get('html')
			// 'text': el.get('text')
		}).replaces(el);
	});
});