$(document).ready(function(){
	
	$('#social_icons').hide();
   			$('a#click').click(function(){
			$('#social_icons').fadeIn('slow');
			$('#close').fadeIn('slow');
   });
   $('a#close').click(function(){
   		$('#social_icons').fadeOut('slow');
		$('#close').fadeOut('slow');
	})
   //$('body').mouseup(function(){
   		//$('#social_icons').hide('fast');
		//})
 	});
