$(document).ready(function() {

	$('#socialLinks li').mouseenter(function() {		
		$(this).children('.socialInfo').stop(true,true).show('fast');
		$(this).children('a').addClass('active');
	});
	
	$('#socialLinks li, .socialInfo').mouseleave(function(){
		$('.socialInfo').stop(true,true).hide('fast');
		$('#socialLinks li a').removeClass('active');
	});
	
});
