/*--------------------------------------------------------------
	DOM Ready
--------------------------------------------------------------*/
window.addEvent('domready', 
function() {
	new Page.Base();
});

/*--------------------------------------------------------------
	Page
--------------------------------------------------------------*/
var Page = {};

Page.Base = new Class({
	initialize: function() {
		this.InternalMailtos();
	},

	/*--------------------------------------------------------------
		InternalMailtos
		- Prevent email scrappers from capturing exposed addys
	--------------------------------------------------------------*/
	InternalMailtos: function() {
		$$('a').each(function(a) {
			if (a.hasClass('mailed')) {
				var myObject = {
					prop0: '@',
					prop1: 'sanitytechnology.com'
				};
				a.set('href', 'mailto:' + a.get('text').substitute(myObject) + a.get('rel'));
				a.set('text', a.get('text').substitute(myObject));
				a.removeProperty('rel');
			}
		});
	}
});