$(document).ready(function(){


$('.personal_email').each(function(){
	$.post('http://apogenix.com/inc/getContactInfo.php',{
		pass: "secret",
		id: $(this).attr("id")
	},function(txt){
		if(txt!="") eval(txt);
	});
});


});