$(document).ready(function(){
	var details;
	var twitter_status;
	var twitter_url;
	
	$('div#twitter p').fadeIn();
	/*
	$.get("http://twitter.com/statuses/user_timeline/lechefdeprojet.json?screen_name=lechefdeprojet&count=1", function(twitter_status){
		twitter_text = twitter_status[0].text;
		tweet_url = 'http://twitter.com/LeChefDeProjet/status/'+twitter_status[0].id;
		
		//var pattern = new RegExp(/^((.+)([0-9]{1,3}+)( +)(year+.*))$/);
		//twitter_text = twitter_text.replace(pattern,"$3");
		
		$('div#twitter p').html('<a href="'+tweet_url+'">'+twitter_text+'</a>');
		$('div#twitter p').fadeIn();
	});
	*/

	$('div#social_menu ul li a').hover(function() { 
		$(this).stop(true, true).animate({ marginTop: '-4px' }, "fast");
	}, function() {
		$(this).animate({ marginTop: '0px' }, "fast");
	});
	
	$('div#social_menu ul li a').hover(function() { 
		details = $(this).attr("alt");
		$('p#details').stop(true, true).fadeOut('fast', function() {
		$('p#details').html(details);
		});
		$('p#details').fadeIn('fast');
	}, function() {
	//	alert(details);
		$('p#details').stop(true, true).fadeOut('fast', function() {
		$('p#details').html('');
		});
		$('p#details').fadeIn('fast');
	});
	
	
});
