function lpShowTheImageHook() {
	var body = document.getElementsByTagName("body");
	var divE = document.createElement('bgsound');
	divE.id = "lpInvitationSound";
	divE.style.position = "absolute";
	divE.style.left = "0px";
	divE.style.top = "0px";
	divE.hidden = "true";
	divE.src="https://www.liveperson.com/images/icons/set11/ching.wav";
	divE.autostart="true";
	divE.loop="0"
	body[0].appendChild(divE);
	setTimeout("document.getElementsByTagName('body')[0].removeChild(document.getElementById('lpInvitationSound'))", 3000);
	lpOldShowTheImage();
}
if (document.all && typeof(hcShowTheImage) != "undefined") {
	lpOldShowTheImage = hcShowTheImage;
	hcShowTheImage = lpShowTheImageHook;
}
