jQuery('#mask, .close_modal').live('click', function() {

	jQuery('#mask').hide();
	jQuery('#modal').hide();

})







jQuery('.open_phone_modal').bind('click', function() {

	jQuery('#mask').css({'height' : $(body).height()}).show(500);
	
	jQuery('#modal').show(500);
	
	return false;

})
