$(document).ready(function() {
	$("#phone a").hover(showCallLabel, hideCallLabel);
	$("#phone a").focus(showCallLabel);
	$("#phone a").blur(hideCallLabel);

	$("#email a").hover(showEmailLabel, hideEmailLabel);
	$("#email a").focus(showEmailLabel);
	$("#email a").blur(hideEmailLabel);
	
	$("#dopplr a").hover(showdopplrLabel, hidedopplrLabel);
	$("#dopplr a").focus(showdopplrLabel);
	$("#dopplr a").blur(hidedopplrLabel);

	$("#skype a").hover(showskypeLabel, hideskypeLabel);
	$("#skype a").focus(showskypeLabel);
	$("#skype a").blur(hideskypeLabel);

	$("#facebook a").hover(showfacebookLabel, hidefacebookLabel);
	$("#facebook a").focus(showfacebookLabel);
	$("#facebook a").blur(hidefacebookLabel);

	$("#delicious a").hover(showdeliciousLabel, hidedeliciousLabel);
	$("#delicious a").focus(showdeliciousLabel);
	$("#delicious a").blur(hidedeliciousLabel);


	$("#twitter a").hover(showTwitterLabel, hideTwitterLabel);
	$("#twitter a").focus(showTwitterLabel);
	$("#twitter a").blur(hideTwitterLabel);
});

function showCallLabel() {
	$("#phone a span").show();
	$("#phone a span").animate({
		top: "10px",
		opacity: 1
	}, 250 );
}

function hideCallLabel() {
	$("#phone a span").animate({ 
		top: "20px",
		opacity: 0
	}, 250 );
	setTimeout("$('#phone a span').hide();", 250);
	$("#phone a span").animate({ 
		top: "-10px"
	}, 250 );
}

function showEmailLabel() {
	$("#email a span").show();
	$("#email a span").animate({
		top: "-23px",
		opacity: 1
	}, 250 );
}

function hideEmailLabel() {
	$("#email a span").animate({ 
		top: "-13px",
		opacity: 0
	}, 250 );
	setTimeout("$('#email a span').hide();", 250);
	$("#email a span").animate({ 
		top: "-33px"
	}, 250 );
}

function showdopplrLabel() {
	$("#dopplr a span").show();
	$("#dopplr a span").animate({
		top: "-23px",
		opacity: 1
	}, 250 );
}

function hidedopplrLabel() {
	$("#dopplr a span").animate({ 
		top: "-13px",
		opacity: 0
	}, 250 );
	setTimeout("$('#dopplr a span').hide();", 250);
	$("#dopplr a span").animate({ 
		top: "-33px"
	}, 250 );
}

function showskypeLabel() {
	$("#skype a span").show();
	$("#skype a span").animate({
		top: "10px",
		opacity: 1
	}, 250 );
}

function hideskypeLabel() {
	$("#skype a span").animate({ 
		top: "20px",
		opacity: 0
	}, 250 );
	setTimeout("$('#skype a span').hide();", 250);
	$("#skype a span").animate({ 
		top: "-10px"
	}, 250 );
}

function showfacebookLabel() {
	$("#facebook a span").show();
	$("#facebook a span").animate({
		top: "10px",
		opacity: 1
	}, 250 );
}

function hidefacebookLabel() {
	$("#facebook a span").animate({ 
		top: "20px",
		opacity: 0
	}, 250 );
	setTimeout("$('#facebook a span').hide();", 250);
	$("#facebook a span").animate({ 
		top: "-10px"
	}, 250 );
}

function showdeliciousLabel() {
	$("#delicious a span").show();
	$("#delicious a span").animate({
		top: "10px",
		opacity: 1
	}, 250 );
}

function hidedeliciousLabel() {
	$("#delicious a span").animate({ 
		top: "20px",
		opacity: 0
	}, 250 );
	setTimeout("$('#delicious a span').hide();", 250);
	$("#delicious a span").animate({ 
		top: "-10px"
	}, 250 );
}

function showTwitterLabel() {
	$("#twitter a span").show();
	$("#twitter a span").animate({
		top: "10px",
		opacity: 1
	}, 250 );
}

function hideTwitterLabel() {
	$("#twitter a span").animate({ 
		top: "20px",
		opacity: 0
	}, 250 );
	setTimeout("$('#twitter a span').hide();", 250);
	$("#twitter a span").animate({ 
		top: "-10px"
	}, 250 );
}









