// function changecss() made by Shawn Olson - Copyright 2004 - http://www.shawnolson.net
/* ThinkQuest International 2006
	The DReaMers - DRM: Two Sides of the Story
	change.js
*/

function changecss(theClass,element,value) {
	var cssRules;
	if (document.all) {
		cssRules = 'rules';
	}
	else if (document.getElementById) {
		cssRules = 'cssRules';
	}
	for (var S = 0; S < document.styleSheets.length-1 ; S++){
		for (var R = 0; R < document.styleSheets[S][cssRules].length; R++) {
			if (document.styleSheets[S][cssRules][R].selectorText == theClass) {
	    		document.styleSheets[S][cssRules][R].style[element] = value;
	   		}
	  	}
	}	
}
