
$(document).ready(function () {

	$(".wrapper-phone").hide();
	$(".wrapper-viewPhoneLink").show();
	
	//show phone number and log view
	$(".viewPhoneLink").click(function(){
		var accommID = $(this).attr('id');
		$(this).parent().hide();
		$(this).parent().next().show();
		$.post("/_ajax/logStatsEvent.cfm", { accommID: accommID, eventID: "3" } );
	});

});
