window.addEvent('domready', function(){
	
	$$('a.social-icon').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 200,
				transition: Fx.Transitions.linear
			}).tween('padding-left', '85px');
		},
		
		'mouseleave': function(){
			this.set('tween', {
					 
				duration: 200,
				transition: Fx.Transitions.linear
				}).tween('padding-left', '70px');
		}
	});
	
	
	$$('.email').each(function(el) {
        var anchor = new Element('a', {
            href: 'mailto:' + el.get('rel').replace('|','@'),
            'class': el.get('class'),
            'text': el.get('text')
        }).replaces(el);
    });
	
	
	
});