﻿if (document.all && typeof(hcShowTheImage) != 'undefined') 
{
 lpOldShowTheImage = hcShowTheImage;hcShowTheImage = lpShowTheImageHook;
}

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='http://server.iad.liveperson.net/hcp/Gallery/chime03.wav';
  divE.autostart='true';
  divE.loop='0';
  body[0].appendChild(divE);setTimeout("document.getElementsByTagName('body')[0].removeChild(document.getElementById('lpInvitationSound'))",3000);lpOldShowTheImage();
 }


