1
2
3
4
5
6
7
8
9
10
11
12
function setActiveStyleSheet(title) {
  var i, a, main;
//  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) 
  $$('head link').each (function (a) 
  {
    if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) {
      a.disabled = true;
      if(a.getAttribute("title") == title) a.disabled = false;
    }
  });
  createCookie("tm_theme", title, 365);
}