// +----------------------------------------------+ //
// |  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 = 'song1=';

// +----------------------------+
// | Audio Switch 1: Front Page |
// +----------------------------+

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/songwood.mid"; 
               alts = "Songs from the Woods by Jetho Tull"; 
               break;
          case 2: 
               auds = "http://www.kongaloid.org/src/audio/thkbrk1.mid"; 
               alts = "Thick as a Brick by Jetho Tull"; 
               break;
          case 3: 
               auds = "http://www.kongaloid.org/src/audio/velvtgrn.mid"; 
               alts = "Velvet Green by Jetho Tull";  
               break;
          case 4: 
               auds = "http://www.kongaloid.org/src/audio/bouree.mid"; 
               alts = "Bouree by Jetho Tull";  
               break;
          case 5: 
               auds = "http://www.kongaloid.org/src/audio/ingdavda.mid"; 
               alts = "In-A-Gadda-Da-Vida by Iron Butterfly";  
               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;
     }

// +------------+
// | Audio Menu |
// +------------+

function selectaudio(oid) {
     ctxt = '<a href="javascript:switchaudio(1);">Songs From The Woods</a><br/>';
     ctxt += '<a href="javascript:switchaudio(2);">Thick as a Brick</a><br/>';
     ctxt += '<a href="javascript:switchaudio(3);">Velvet Green</a><br/>';
     ctxt += '<a href="javascript:switchaudio(4);">Bouree</a><br/>';
     ctxt += '<a href="javascript:switchaudio(5);">In-A-Gadda-Da-Vida</a><br/>';
     ctxt += '<a href="javascript:switchaudio(0);">QUIET MODE (Audio Off)</a><br/>';
     oid.innerHTML = ctxt;
     }

