$(function()
{
	//Phone # - Email Swap
	//----------------------------------------------------------
	var over = false; //I have to do this for firefox because the mouseover event continuously fires
	$('.contacts .email').hide();

	$('.contacts a').hover(
		function(){
			if ( !over )
			{
				$(this).find('.phone').hide();
				$(this).find('.email').show('slide', {direction: 'right'}, 125);
				over = true;
			}
		},
		function(){
			$(this).find('.email').hide();
			$(this).find('.phone').show();
			over = false;
		}
	);

});
