<!-- Begin
// Set slideShowSpeed (milliseconds)
var quoteSpeed = 10000;

// Specify the image files
var Quotes = new Array("What are Methodvue's customers saying?<br><br> <i>&quot;Thanks for everything you have done so far. Your work has been amazing and we could not have gotten to where we are on the Identity Management project without your impressive and creative contributions.&quot;</i>","Information is an asset with significant intrinsic value. On average, 40% of a company's value is represented by intangible assets, like Intellectual Property*. Assets that can be lost or stolen as easily as sending an email.<br><br><i>*World Intellectual Property Organization, &quot;Intellectual Property -- A Powerful Tool for Economic Growth&quot;</i>","Many businesses conduct operations internationally, unaware of the significant differences in attitudes, laws, and perspectives on innovation and intellectual property -- often to their financial detriment.");

// do not edit anything below this line
var timeoutVar;
var randomQuote=-1;

function runQuotes() {
	var p = Quotes.length;
	randomQuote = (randomQuote == -1) ? Math.floor(Math.random()*p) : ((randomQuote+1 < p) ? (randomQuote+1) : 0);
	var j = randomQuote;
	
	var tempQuote = document.getElementById("QuoteSlideShow");
	tempQuote.innerHTML = "<h1><span class='vue'>"+Quotes[j]+"</span></h1>";
	
	blendQuote(100);

	timeoutVar = setTimeout('runQuotes()', quoteSpeed);
}


function changeQuoteOpac(opacity){
	var tempStyle = document.getElementById("QuoteSlideShow");
	tempStyle.style.opacity = (opacity /100);
	tempStyle.style.MozOpacity = (opacity / 100);
	tempStyle.style.KhtmlOpacity = (opacity / 100);
	tempStyle.style.filter = "alpha(opacity=" + opacity + ")";
} 

function blendQuote(millisec){
var speed = Math.round(millisec / 500);
var timer = 0;
//make image transparent
changeQuoteOpac(0);

//fade in image
for(var i = 0; i <= 100; i++){
setTimeout("changeQuoteOpac(" + i + ")",(timer * speed));
timer++;
}
} 

