var activeStyle = 'yellow';

function styleSwap(styleTitle) {
	var currTag;

	if (document.getElementsByTagName) {
		for (var i = 0; (currTag = document.getElementsByTagName("link")[i]); i++) {
			if (currTag.getAttribute("rel").indexOf("style") != -1 && currTag.getAttribute("title")) {
				currTag.disabled = true;

				if(currTag.getAttribute("title") == styleTitle) {
          defaultStatus = 'Style: ' + styleTitle;
					currTag.disabled = false;
				}
			}
		}
	}

	return true;
}
