// 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>In order to be profitable in today's strongly competetive market place companies have to be innovative, to continually find new ways to add value for their customers and to out-compete their rivals. </i><img src=\"/img/quote-end.gif\"><br><span class=\"source\">Professor Julian Birkinshaw, London Business School</span>"
message[1]="<img src=\"/img/quote-start.gif\"><i>Innovation isn't necessarily about something big and earth shattering. It's about constantly moving forward, about being dynamic, about adapting to new situations.</i><img src=\"/img/quote-end.gif\"><br><span class=\"source\">Mindy Wilson, the Confederation of British Industry</span>"
message[2]="<img src=\"/img/quote-start.gif\"><i>In any business today the product has got to be great great great. There's also got to be what I call a 'bit of ziz in showbiz', which attracts people to come and try your product.</i><img src=\"/img/quote-end.gif\"><br><span class=\"source\">Simon Woodroffe, founder Yo!Sushi</span>"
message[3]="<img src=\"/img/quote-start.gif\"><i>Anything that is creating change outside a company adds a premium to innovation inside that company.</i><img src=\"/img/quote-end.gif\"><br><span class=\"source\">Professor John Kotter, Harvard Business School</span>"
message[4]="<img src=\"/img/quote-start.gif\"><i>Where there are competitive markets there is always a high pace of innovation and thus a high pace of wealth creation for society.</i><img src=\"/img/quote-end.gif\"><br><span class=\"source\">Eric Beinhocker, Executive Director Europe, the Corporate Executive Board</span>"
message[5]="<img src=\"/img/quote-start.gif\"><i>Innovation is only good if it is actually taking you forward. If you forget the wisdom of the past you have to innovate very fast just to stand still.</i><img src=\"/img/quote-end.gif\"><br><span class=\"source\">Nigel Topping, industrialist</span>"
message[6]="<img src=\"/img/quote-start.gif\"><i>The market is forcing companies to get creative with the way they are managing themselves. They can no longer operate inside this little box.</i><img src=\"/img/quote-end.gif\"><br><span class=\"source\">Bud Cox, CEO, the Kaizen Institute</span>"

var i_blurstrength=35
var i_message=0
var i_textcolor=0
var myString=''

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:290px;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:290px;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 - -->
