<!--
//  -- top line
document.write("<strong><a href='/index.php'>HOME</a>&nbsp;&nbsp;•&nbsp;&nbsp;");
document.write("<a href='/our-story.htm'>MY STORY</a>&nbsp;&nbsp;•&nbsp;&nbsp;");
document.write("<a href='/news-articles.htm'>NEWS & ARTICLES</A>&nbsp;&nbsp;•&nbsp;&nbsp;");
document.write("<a href='/bodhitree.php'>UNDER THE BODHI TREE CENTER</A>&nbsp;&nbsp;•&nbsp;&nbsp;");
document.write("<a href='/contact-dreamseeds.php'>CONTACT US</a><br>");
//  -- 2nd Line
document.write("<a href='/store/'>ONLINE CATALOG</a>&nbsp;&nbsp;•&nbsp;&nbsp;");
document.write("<a href='/wholesale.htm'>WHOLESALE</a>&nbsp;&nbsp;•&nbsp;&nbsp;");
document.write("<a href='/dropship.htm'>DROPSHIP</a>&nbsp;&nbsp;•&nbsp;&nbsp;");
document.write("<a href='/join-list.php'>JOIN OUR EMAIL LIST!</a>&nbsp;&nbsp;•&nbsp;&nbsp;");
document.write("<a href='/help.htm'>HELP</a></strong><br>");
//
document.write("<span style='margin-top:4px; margin-bottom:4px;'>");
document.write("<IMG src='/images/layout/bar-multicolor.jpg' WIDTH='770' HEIGHT='8' BORDER='0'></span<br>");
//
//  --- music
//document.write('<object type="audio/x-mp3" id="sound" data="/music/ohmclip1.mp3" width="0" height="0">');
//document.write('<param name="src" value="i/music/ohmclip1.mp3" />');
//document.write('<param name="autostart" value="true" />');
//document.write('<param name="controller" value="false" /></object>');
//document.write('<div><a href="javascript:stopSound()">');
//document.write('<img id="soundbtn" src="/images/buttons/btn-a-music-sm.gif" width="83" height="22" border="0" ');
//document.write('valign="bottom"></a></div>');
function stopSound() {
var oSound = document.getElementById('sound');
if (oSound && oSound.object) {  
oSound.stop();
} else {  
oSound.parentNode.removeChild(oSound);
}
}
function playSound() {
var oSound = document.getElementById('sound');
if(oSound && oSound.object) {  
oSound.play();
} else {
if (oSound) {  
oSound.parentNode.removeChild(oSound);
}
var SOUND_FILE = '/music/ohmclip1.mp3';
oSound = document.createElement('object');
oSound.setAttribute('id', 'sound');
oSound.setAttribute('width', '0');
oSound.setAttribute('height', '0');
oSound.setAttribute('data', SOUND_FILE);
oSound.setAttribute('type', 'audio/x-mp3');
var oParam = document.createElement('param');
oParam.setAttribute('name', 'src');
oParam.setAttribute('value', SOUND_FILE);
oSound.appendChild(oParam);
oParam = document.createElement('param');
oParam.setAttribute('name', 'ShowAudioControls');
oParam.setAttribute('value', 'false');
oSound.appendChild(oParam);
oParam = document.createElement('param');
oParam.setAttribute('name', 'ShowControls');
oParam.setAttribute('value', 'false');
oSound.appendChild(oParam);
oParam = document.createElement('param');
oParam.setAttribute('name', 'AutoStart');
oParam.setAttribute('value', 'true');
oSound.appendChild(oParam);
oParam = document.createElement('param');
oParam.setAttribute('name', 'loop');
oParam.setAttribute('value', 'true');
oSound.appendChild(oParam);
document.body.appendChild(oSound);
}
}
//  ---end music
-->