// On Menu Item - Click
function changeLoc(address, id)
{
  window.location.href = address;
}

// On Menu Item - Mouse Over
function onOver(td)
{
  if(document.getElementById||(document.all && !(document.getElementById)))
  {
    td.style.backgroundColor="#FEFFB3";
    td.style.cursor="hand";
  }
}

// On Menu Item - Mouse Out
function onOut(td)
{
  if(document.getElementById||(document.all && !(document.getElementById)))
    td.style.backgroundColor="#D7FFB3";
}

// Render Menu Style (columns and rows)
function renderMenu(landingURL, lordVader)
{
	document.write('<tr>');
	document.write('  <td bgcolor="#003300" height="1"><img src="/LDS_music/img/pixel.gif" alt="" border="0" height="1" width="1"></td>');
	document.write('</tr>');
	document.write('<tr>');
	document.write('  <td style="background-color: rgb(215, 255, 179);" class="arrows" onmouseover="onOver(this);" onmouseout="onOut(this);" onclick="changeLoc(\'http://' + landingURL + '\');" bgcolor="#D7FFB3">&nbsp;&nbsp;»');
	document.write('    <a href="http://' + landingURL + '" class="nav">' + lordVader + '</a>');
	document.write('  </td>');
	document.write('</tr>');
}

// Render STYLESHEET
document.write('<link rel="stylesheet" href="/LDS_music/img/styles.css" type="text/css">');

// Open Menu Table
document.write('<table align="center" border="0" cellpadding="0" cellspacing="0" width="160">');
// Menu Items
document.write('<tr>');
document.write('  <td>');
document.write('<br><span class="bullet">&nbsp;Browse:</span>');
renderMenu('myldsmusic.searchponderpray.com/song/a_song.php', 'By Song Title');
renderMenu('myldsmusic.searchponderpray.com/lds_artists/LDS_artists_1.php', 'By Artist');
renderMenu('myldsmusic.searchponderpray.com/song/favorite_songs.php', 'Favorite Songs');
renderMenu('myldsmusic.searchponderpray.com/top50/tophymns.php', 'Top 10 Hymns');
renderMenu('myldsmusic.searchponderpray.com/EFY/EFY_music.php', 'EFY Music');
renderMenu('myldsmusic.searchponderpray.com/LDS_mixes/favorite_mixes.php', 'My LDS Music Mixes');


// Menu Christmas Music
//document.write('<tr>');
//document.write('  <td>');
//document.write('<br><span class="bullet">&nbsp;Christmas Music:</span>');
//renderMenu('myldsmusic.searchponderpray.com/christmas/christmas.php', 'Christmas Hymns');
//renderMenu('myldsmusic.searchponderpray.com/christmas/christmas_albums.php', 'Christmas Albums');
//renderMenu('myldsmusic.searchponderpray.com/christmas/lds_christmas_albums.php', 'Christmas (LDS)');
//renderMenu('myldsmusic.searchponderpray.com/christmas/free_christmas.php', 'Christmas (Free!)');

// Menu Christmas Specials
//document.write('<tr>');
//document.write('  <td>');
//document.write('<br><span class="bullet">&nbsp;Christmas Specials:</span>');
//renderMenu('nettycreations.com/christmas_tvcalendar.htm', 'TV Air Dates');


// Menu Items2
//document.write('<tr>');
//document.write('  <td>');
//document.write('    <br><span class="bullet">Other LDS Resources</span>');
//renderMenu('mormonads.net', 'MormonAds');
//renderMenu('lds-ctr-rings.com', 'CTR Rings');
//renderMenu('efyphotos.com', 'EFY Photos');



// Menu Drop Down List

// Close Menu Table
document.write('</table>');