$(function()
{
	$('#wordpress-off').css({'opacity':'0'});
	$('#facebook-off').css({'opacity':'0'});
	$('#twitter-off').css({'opacity':'0'});
	
	$('#wordpress-off').hover(function()
	{
		$(this).stop().animate({
			'opacity':'1',
			'width':'164px'},
			{duration: 1000});
	},function()
	{
		$(this).stop().animate({
			'opacity':'0',
			'width':'46px'},
			{duration: 500});
	});
	
	$('#facebook-off').hover(function()
	{
		$(this).stop().animate({
			'opacity':'1',
			'width':'164px'},
			{duration: 1000});
	},function()
	{
		$(this).stop().animate({
			'opacity':'0',
			'width':'46px'},
			{duration: 500});
	});
	
	$('#twitter-off').hover(function()
	{
		$(this).stop().animate({
			'opacity':'1',
			'width':'164px'},
			{duration: 1000});
	},function()
	{
		$(this).stop().animate({
			'opacity':'0',
			'width':'46px'},
			{duration: 500});
	});
});