Toronton,
$(document).ready(function() {
$(".secphone>*").click(function() {
elem = $(this).parent();
jQuery.post("data.php", {
id: elem[0].id
}, show_secphone);
});
function show_secphone(data) {
elem.fadeOut(500, function() {
$(this).html(data).fadeIn(500);
});
}
})