// +----------------------------------------------+ //
// |  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 = 1;
var songindx = 'song4=';

// +-----------------------------+
// | Audio Switch 4: Entry Pages |
// +-----------------------------+

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/pf-dimnd.mid"; 
               alts = "Shine on Your Crazy Diamond by Pink Floyd"; 
               break;
          case 2: 
               auds = "http://www.kongaloid.org/src/audio/thewall.mid"; 
               alts = "The Wall by Kansas"; 
               break;
          case 3: 
               auds = "http://www.kongaloid.org/src/audio/aqualung.mid"; 
               alts = "Aqualung by Jetho Tull";  
               break;
          case 4: 
               auds = "http://www.kongaloid.org/src/audio/carryon.mid"; 
               alts = "Carry On my Wayward Son by Kansas";
               break;
          case 5: 
               auds = "http://www.kongaloid.org/src/audio/pf-money.mid"; 
               alts = "Money by Pink Floyd";
               break;
          case 6: 
               auds = "http://www.kongaloid.org/src/audio/pf-usthm.mid"; 
               alts = "Us and Them by Pink Floyd";
               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);">Shine on Your Crazy Diamond</a><br/>';
     ctxt += '<a href="javascript:switchaudio(2);">The Wall</a><br/>';
     ctxt += '<a href="javascript:switchaudio(3);">Aqualung</a><br/>';
     ctxt += '<a href="javascript:switchaudio(4);">Carry On my Wayward</a><br/>';
     ctxt += '<a href="javascript:switchaudio(5);">Money</a><br/>';
     ctxt += '<a href="javascript:switchaudio(6);">Us and Them</a><br/>';
     ctxt += '<a href="javascript:switchaudio(0);">QUIET MODE (Audio Off)</a><br/>';
     oid.innerHTML = ctxt;
     }

