/*
RSPCA Hereford - Javascript
---------------------------------------------------------
  Copyright©2008 Red Cherry Solutions Ltd.
  http://www.RedCherrySolutions.co.uk

  Duplication of this script or any associated scripts
  in whole or in part is strictly forbidden.
---------------------------------------------------------
*/

/* Swap the active CSS */
function setActiveStyleSheet(title) {
	if (document.getElementsByTagName) {
		for (i=0; (a = document.getElementsByTagName("link")[i]); i++) {
			if (a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) a.disabled = true;
			if (a.getAttribute("title") == title) a.disabled = false;
		}
	}
}
