$(document).ready(function(){  
	
	$('div#email').hover(
		function() {
			$('#social').fadeIn('slow').show();
		},
		function() {
			$('#social').fadeOut('slow').hide();
		}
	);



});
