function show_phone(){
	phone = document.createElement("div");
	phone.id = 'phone_wrapper';
	
	phone.style.backgroundColor = '#000000';
	phone.style.fontWeight = "Bold";
	phone.style.color = "#CCCCCC";
	phone.style.fontSize = "96px";
	phone.style.fontFamily = "Arial, Helvetica, sans-serif";
	phone.style.textAlign = "center";
	phone.style.lineHeight = "150px";
	phone.style.height = "150px";
	phone.style.position = "absolute";
	phone.style.left = "0px";
	phone.style.top = "-180px";
	phone.style.width = "100%";
	phone.style.zIndex = "100";
	phone.style.cursor = "pointer";
	phone.style.opacity = "0.8";
	phone.style.filter = "alpha(opacity=80)";
	
	
	phone.innerHTML = "1 (877) 983-6836";
	
	$("body").prepend(phone);
	$('#phone_wrapper').animate({
		top : "0px",	  
	}, 500);
	
	$("body").prepend("<div id='cls' style='color:white; position: absolute; right:0px; top:0px; font-size:12px; z-index:101; line-height:25px; padding:0px 10px; background-color:red; font-family:Arial, Helvetica, sans-serif; display: none; cursor: pointer;' onclick='close_phone();' onmouseover=this.style.backgroundColor='orange' onmouseout=this.style.backgroundColor='red'>Close</div>")
	
	setTimeout(function(){
		$('#cls').fadeIn();				
	},800)
}

function close_phone(){
	$('#cls').remove();
	$('#phone_wrapper').remove();
}


$(document).keydown(function(e) {
	if (e.keyCode == 27) {
		close_phone();
	}
});
