// +----------------------------------------------+ //
// |  Copyright©2008, Steven Douglas Huddleston   | //
// |             All Rights Reserved              | //
// | No portion of this code can be copied, used, | //
// | published or reproduced in any way without   | //
// | the expressed written consent of the author. | //
// +----------------------------------------------+ //

var audiopreset = 4;
var songindx = 'song3=';

// +--------------------------+
// | Audio Switch 3: Category |
// +--------------------------+

function switchaudio(audioselect) {

     if (audioselect) {
          document.cookie = "audio=1; path=/";
          document.cookie = songindx + audioselect + "; path=/";
          imgs = "http://www.kongaloid.org/src/img/audio1.gif";
          }
     else
          {
          document.cookie = "audio=0; path=/";
          imgs = "http://www.kongaloid.org/src/img/audio0.gif";
          }

     switch (audioselect) {
          case 1: 
               auds = "http://www.kongaloid.org/src/audio/cestlavi.mid"; 
               alts = "C\'est la Vie by Emerson, Lake & Palmer"; 
               break;
          case 2: 
               auds = "http://www.kongaloid.org/src/audio/pf-heyou.mid"; 
               alts = "Hey You by Pink Floyd";  
               break;
          case 3: 
               auds = "http://www.kongaloid.org/src/audio/stairhvn.mid"; 
               alts = "Stairway to Heaven by Led Zeppelin"; 
               break;
          case 4: 
               auds = "http://www.kongaloid.org/src/audio/and_u_i.mid"; 
               alts = "And You And I by Yes"; 
               break;
          case 5: 
               auds = "http://www.kongaloid.org/src/audio/htlcalif.mid"; 
               alts = "Hotel California by Eagles"; 
               break;
          case 6: 
               auds = "http://www.kongaloid.org/src/audio/miracles.mid"; 
               alts = "Miracles Out of Nowhere by Kansas"; 
               break;
         default: 
              auds = ""; 
              alts = "Music Off";}

     document.getElementById('audio').src = auds;
     document.getElementById('audlf').src = imgs;
     document.getElementById('audrg').src = imgs;
     document.getElementById('audlf').alt = alts;
     document.getElementById('audrg').alt = alts;
     document.getElementById('songtitle').style.display = 'none';
     }

// +------------+
// | Audio Menu |
// +------------+

function selectaudio(oid) {
     ctxt = '<a href="javascript:switchaudio(1);">C&#39;est la Vie</a><br/>';
     ctxt += '<a href="javascript:switchaudio(2);">Hey You</a><br/>';
     ctxt += '<a href="javascript:switchaudio(3);">Stairway to Heaven</a><br/>';
     ctxt += '<a href="javascript:switchaudio(4);">And You And I</a><br/>';
     ctxt += '<a href="javascript:switchaudio(5);">Hotel California</a><br/>';
     ctxt += '<a href="javascript:switchaudio(6);">Miracles Out of Nowhere</a><br/>';
     ctxt += '<a href="javascript:switchaudio(0);">QUIET MODE (Audio Off)</a><br/>';
     oid.innerHTML = ctxt;
     }


