var imageArray = ["images/dowlogo.gif","images/UDlogo.jpg","images/pernodlogo.gif","images/cdslogo180x65.png","images/phlogo.gif","images/cllogo.png","images/zurichlogo.gif"]
var widthArray = ["180","180","139","180","61","158","94"]
var heightArray = ["27","32","70","65","71","30","71"]
var testArray = new Array(7)
var authorArray = new Array(7)
var homeArray =  ["images/meeting4.jpg","images/meeting2.jpg","images/meeting4.jpg","images/meeting3.jpg","images/meeting4.jpg","images/meeting2.jpg","images/meeting3.jpg"]

var step = 6
var depth = 7
var transparency = 0

ie = document.all?true:false;

testArray[0] = "&quot;The most important thing for me is that Grouputer " +
"allows all my team members to contribute... It wasn't until we started using Grouputer " +
"that I really started to get other peoples' thoughts on current processes and how things " +
"could be improved&quot;."
authorArray[0] = "- James Donlevy,<br>Dow AgroSciences Australia"

testArray[1] = "&quot;We were pleased with Grouputer's strategic planning capabilities, " +
"particularly the ability to undertake complex planning over the Internet.&quot;" 
authorArray[1] = "- Dr Fred DeMicco,<br>University of Delaware"

testArray[2] = "&quot;Grouputer is not just a web conferencing system with a few extras. " +
"It is a fully featured e-meeting and e-collaboration system. " +
"We even had more meetings, but they were quicker and more productive.&quot;" 
authorArray[2] = "- Pierre-Yves Calloc’h,<br>CIO, Pernod Ricard Pacific"

testArray[3] = "&quot;For the first time in the 80,000 employee Mexican " +
"multinational's history, some 50 senior Grupo Bimbo executives contributed " +
"more than 200 quality ideas to the top management 3-day annual strategic " +
"planning workshop.&quot;" 
authorArray[3] = "- Agustín Santamarina,<br>CDS Estrategia, Mexico"

testArray[4] = "Brainstorming on strengths and opportunities, drilling down on priorities, " +
"identifying strategies, individually committing to deliverables " +
"and dates -- all this done real time"
authorArray[4] = "- Jim Richardson,<br>Pizza Hut, Texas"

testArray[5] = "We are constantly finding new ways to use Grouputer to reduce " +
"meeting time and improve the quality of the outcome. It is worth the investment!"
authorArray[5] = "- Dr Tom White,<br>Changelink"

testArray[6] = "Grouputer is capable of producing creative solutions because of " +
"the high degree of participation that the technology forces."
authorArray[6] = "- Deborah Burt,<br>HR, Zurich Financial Services"



function init() {
	step++
	if (step >= depth)
		step = 0
	h = document.getElementById("homeImg")
	if (h != null)
		h.src= homeArray[step]
	document.getElementById("testimg").src= imageArray[step]
	document.getElementById("testbody").innerHTML= testArray[step]
	document.getElementById("testauthor").innerHTML= authorArray[step]
	setTimeout("fademe()",10000)
}

function fademe() {
	// hide the item, fade in the other one
	e = document.getElementById("fader")
	if (ie) {
		e.style.filter = "alpha(opacity=0)";
//  	e.style.opacity = 0;
//		e.filters.alpha.opacity= 0
	} else
		e.style.MozOpacity = 0
	transparency = 0
	step++
	if (step == depth)
		step = 0
	h = document.getElementById("homeImg")
	if (h != null)
		h.src= homeArray[step]
	document.getElementById("testimg").src= imageArray[step]
	document.getElementById("testbody").innerHTML= testArray[step]
	document.getElementById("testauthor").innerHTML= authorArray[step]
	setTimeout("fadein()",200)
}

function fadein() {
	e = document.getElementById("fader")
	transparency = transparency + 10
	if (ie) {
		e.style.filter = "alpha(opacity="+transparency+")";
//  	e.style.opacity = transparency/100;
//		e.filters.alpha.opacity= transparency
	} else 
		e.style.MozOpacity = transparency/100
	if (transparency < 100)
		setTimeout("fadein()",200)
	else
		setTimeout("fademe()",10000)
}	

/*
function setOpacity(divId, opacity) {
  var div = document.getElementById(divId);
  opacity = (opacity == 100)?99.999:opacity;
  div.style.filter = "alpha(opacity:"+opacity+")";
  div.style.KHTMLOpacity = opacity/100;
  div.style.MozOpacity = opacity/100;
  div.style.opacity = opacity/100;
}
*/



	