
function contactButtons(){
	$('.contactButton').hover(function(){
		$(this).addClass('hovered');
		$(this).children('a').show();
		$(this).children('span.text').hide();
	},function(){
		$(this).removeClass('hovered');
		$(this).children('a').hide();
		$(this).children('span.text').show();
	});
};

