/**
 * Stylesheet switcher
 * 
 * @version SVN:$Id$
 * @author Mishal.cz <mishal at mishal dot cz>
 * 
 */


function switchTheme(title) 
{
  var i, a, main;
  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
   if(a.getAttribute("rel").indexOf("style") != -1
      && a.getAttribute("id")) {
     a.disabled = true;
		 //alert(a.getAttribute("id"));
     if (a.getAttribute("id") == 'theme_' + title) {
		 	
	 	   a.disabled = false;
	 	   // Cookie.set(theme, )
	   }
   }
  }
}

