$(document).ready(function(){
	$("#address-section").hide();
	$("#phone-section").hide();
	$("#add-address").click(function(){
		$(this).hide('slow');
		$("#address-section").show('slow');
		return false;
	});
	$("#add-phone").click(function(){
		$(this).hide('slow');
		$("#phone-section").show('slow');
		return false;
	});
});