$(document).ready(function(){
	function phoneInsert() {
		$('#cpm_phone_insert').text(GetOfficePhoneText(CPMPhoneNumber, "1.NNN.NNN.NNNN"));
	}	
	$('.overlay').click(function(){
		Boxy.load(this.href, {
			modal: true,
			title: $(this).attr('title'), // add title= attribute to a tag to get the title bar
			closeable: true, 
			closeText: 'CLOSE [ X ]', // close button will only appear if there’s a title attribute
			unloadOnHide: true,
			//y: '0px' // optional, I only have this here to deal with some sporadic placement issues
			center: true,
			fixed: false,
			afterShow: phoneInsert
		});
	return false;
	});
});