var g = 'paw.org';
var a = 'ant';
var z = 'info';
var x = 'mailto:';

$(document).ready(function(){
	Cufon.replace('h2, h3, h4, h5, h6, #navi a', {
		textShadow: '0px 1px rgba(0, 0, 0, 0.3)',
		hover: {color: '#D3201E'}
	});
	
	$('a[href^="mailto"]').each(function(){
		$(this).attr({href: $(this).attr('href').replace(/mailto/g, x+z+'@'+a+g)});
	});
	
	$('.features li')
		.bind('mouseenter', function(){
			$('div', this).stop().slideDown('fast').animate({height: '20px'}, 400);
			$('a', this)
				.css({color: '#D3201E'})
				.stop().animate({marginTop: '-9px'}, 400);
		})
		.bind('mouseleave', function(){
			$('div', this).stop().slideUp('fast');
			$('a', this)
				.css({color: '#405073'})
				.stop().animate({marginTop: '0px'}, 400);
		});
});
