/* -*- JavaScript -*-
# The leading '#'s are just for consistency with other text formats
#
# rdf:
# dc:title Stylesheet switching script
# dc:date 2004-03-19
# cvs:date $Date: 2004/06/10 13:32:07 $
# dc:creator http://norman.walsh.name/knows/who#norman-walsh
# dc:description JavaScript for stylesheet switching. Stolen from ongoing.
*/

// stylesheet-switching, stolen wholesale from Zeldman with thanks
// and subsequently stolen wholesale from ongoing also with thanks

function toggleMetadata(title) {
  var i, a, main;
  for (i=0; (a = document.getElementsByTagName("link")[i]); i++) {
    if (a.getAttribute("rel") &&
        a.getAttribute("rel").indexOf("style") != -1 &&
        a.getAttribute("title") &&
        a.getAttribute("title").indexOf("meta") != -1) {
      a.disabled = true;
      if(a.getAttribute("title") == title) a.disabled = false;
    }
  }
}

