// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
<!-- Beginning of JavaScript -
var thissize=9
var textfont="Arial"

var textcolor= new Array()
textcolor[0]="FFFFFF"
textcolor[1]="E1CDAB"
textcolor[2]="D5BD93"
textcolor[3]="CAAE7C"
textcolor[4]="A2834E"
textcolor[5]="7C5E2A"
textcolor[6]="604413"

var message = new Array()
message[0]="<img src=\"/img/quote-start.gif\"><i>As a result of economic growth over the last 50 years a mass extinction event is taking place and global warming is fast developing into a global catastrophe.</i><img src=\"/img/quote-end.gif\"><br><span class=\"source\">Tony Juniper, Friends of the Earth</span>"
message[1]="<img src=\"/img/quote-start.gif\"><i>Business has an important role to play in protecting the environment, but so do governments and civil society. No part can do everything on its own.</i><img src=\"/img/quote-end.gif\"><br><span class=\"source\">Bjorn Stigson, President, the World Business Council for Sustainable Development</span>"
message[2]="<img src=\"/img/quote-start.gif\"><i>Global warming is almost certainly taking place....but the typical cure of early and radical fossil-fuel cut-backs is way worse than the original affliction.</i><img src=\"/img/quote-end.gif\"><br><span class=\"source\">Bjorn Lomberg, author of The Skeptcal Environmentalist</span>"
message[3]="<img src=\"/img/quote-start.gif\"><i>Global warming is a huge problem. We are facing significant climate changes in the near future and we will have to find ways of dealing with those and adjusting to them.</i><img src=\"/img/quote-end.gif\"><br><span class=\"source\">Dr. Heike Langenberg, Nature Magazine </span>"
message[4]="<img src=\"/img/quote-start.gif\"><i>The United States is both part of the problem and part of the solution.</i><img src=\"/img/quote-end.gif\"><br><span class=\"source\">Nick Nuttall, UN Environment Programme</span>"
message[5]="<img src=\"/img/quote-start.gif\"><i>The environmental movement has evolved into a force that would deny people in the world, especially poor people, access to essential technology.</i><img src=\"/img/quote-end.gif\"><br><span class=\"source\">Dr. Bonner Cohen, the National Centre for Public Policy Research</span>"

var i_blurstrength=35
var i_message=0
var i_textcolor=0

function blurtext() {
	if(document.all||document.getElementById) {
		if (i_blurstrength >=-2) {
			if (i_textcolor >=textcolor.length-1) {i_textcolor=textcolor.length-1}
			myString = document.getElementById? document.getElementById("blurthis"):document.all.descriptions;
				var browserName=navigator.appName; 
				if(browserName=="Microsoft Internet Explorer") {
					myString.innerHTML = "<span id='blurpit1' style='position:absolute;visibility:visible;width:500px;top:5px;left:5px;filter:blur(add=0,strength="+i_blurstrength+",direction=90);font-family:"+textfont+";font-size:"+thissize+"pt;color:"+textcolor[i_textcolor]+"'>"+message[i_message]+"</span>";
				}
				else {
					myString = '';
					myString.innerHTML = "<span id='blurpit1' style='position:absolute;visibility:visible;width:500px;top:-65px;left:405px;font-family:"+textfont+";font-size:"+thissize+"pt;color:#"+textcolor[i_textcolor]+"'>"+message[i_message]+"</span>";
				}
			document.close()
			i_blurstrength=i_blurstrength-2
			i_textcolor++
			var timer=setTimeout("blurtext()",60)
		}
		else {
			if (i_textcolor >=textcolor.length-1) {i_textcolor=textcolor.length-1}
			myString = document.getElementById? document.getElementById("blurthis"):document.all.descriptions;
				var browserName=navigator.appName; 
				if(browserName=="Microsoft Internet Explorer") {
					myString.innerHTML = "<span id='blurpit1' style='position:absolute;visibility:visible;width:500px;top:5px;left:5px;filter:blur(add=0,strength="+i_blurstrength+",direction=90);font-family:"+textfont+";font-size:"+thissize+"pt;color:#"+textcolor[i_textcolor]+"'>"+message[i_message]+"</span>";
				}
				else {
					myString.innerHTML = "<span id='blurpit1' style='position:absolute;visibility:visible;width:500px;top:-65px;left:405px;font-family:"+textfont+";font-size:"+thissize+"pt;color:#"+textcolor[i_textcolor]+"'>"+message[i_message]+"</span>";
				}			i_message++
			if (i_message>=message.length){i_message=0}
			i_blurstrength=20
			i_textcolor=0
			clearTimeout(timer)
			var timer=setTimeout("blurtext()",6000)
		}
	}
}


// - End of JavaScript - -->
