function soundOff() {
document.getElementById('sound').innerHTML = '';
document.getElementById('sound-control').innerHTML = '<p><a href="javascript:soundOn();" title="Sound On" style="text-decoration:none;"><img src="/images/sound-on-icon.jpg" alt="Sound On" border="0" align="middle" />&nbsp;&nbsp;&nbsp;Turn Sound On</a></p>'; }

function soundOn() {
document.getElementById('sound').innerHTML = '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="0" width="0"><param name="src" value="/sounds/collage-music.mp3"><param name="autoplay" value="true"><param name="controller" value="false"><embed height="0" width="0" src="/sounds/collage-music.mp3" pluginspage="http://www.apple.com/quicktime/download/" type="video/quicktime" controller="false" autoplay="true"></object>';
document.getElementById('sound-control').innerHTML = '<p><a href="javascript:soundOff();" title="Sound Off" style="text-decoration:none;"><img src="/images/sound-off-icon.jpg" alt="Sound Off" border="0" align="middle" />&nbsp;&nbsp;&nbsp;Turn Sound Off</a></p>'; }
