$(function(){
	$('a').wrap('<span />');
	$('a').hover(function(){
		$(this).parent().animate({paddingLeft: '5px',paddingRight: '5px',borderBottomColor: 'rgb(11,171,255)'},150);
		$(this).animate({color: 'rgb(11,171,255)'},150);
	},function(){
		$(this).parent().animate({paddingLeft: '0px', paddingRight: '0px',borderBottomColor:'rgb(155,155,155)'},150);
		$(this).animate({color: 'rgb(155,155,155)'},150);
	});
	$('a.email').click(function(){
		window.location = 'mailto:work'+'@'+'charlesmastin.com?subjet=Hello!';
		return false;
	});
	//
	$('p[class!="meta"] span').delay(500).animate({borderBottomWidth: '4px'},250);
});
