<!-- START HIDING FROM OLD BROWSERS
//script to enable nice color change/mellow blinking text; it works on elements with the id of "colorChange"
function initArray() {
					this.length = initArray.arguments.length;
					for (var i = 0; i < this.length; i++) {
						this[i] = initArray.arguments[i];
				   }
				}
				
				
				var speed = 500;
				var x = 0;
				var color = new initArray("#111111","#111111","#111111","#111111","#111111","#111111","#111111","#111111","#111111","#111111","#111111","#111111","#232323","#353535","#474747","#595959","#6b6b6b","#7d7d7d","#8f8f8f","#a1a1a1","#b3b3b3","#c5c5c5","#d7d7d7","#e9e9e9","#fbfbfb","#ffffff","#ffffff","#ffffff","#ffffff","#ffffff","#ffffff","#ffffff","#ffffff","#ffffff","#ffffff","#ffffff","#ffffff",   "#ffffff","#ffffff","#ffffff","#ffffff","#ffffff","#ffffff","#ffffff","#ffffff","#ffffff","#ffffff","#ffffff","#ffffff", "#fbfbfb","#e9e9e9","#d7d7d7","#c5c5c5","#b3b3b3","#a1a1a1","#8f8f8f","#7d7d7d","#6b6b6b","#595959","#474747","#353535","#232323","#111111","#111111","#111111","#111111","#111111","#111111","#111111","#111111","#111111","#111111","#111111","#111111");
				/*document.write('<div align="center" style="margin-top: 1.5em;"><a id="colorChange" href="/project_support/polar/whatnew/whatnew.html" style="background-color: #4682B4; padding: 0em .5em .125em .5em; font-size: larger; font-weight: bold;">'+ctext+'</a></div>');*/
				function chcolor(){
				document.getElementById("colorChange").style.color=color[x];
				(x < color.length-1) ? x++ : x = 0;
				}
				setInterval("chcolor()",200);

// end hiding-->