


var qtxt = new Array();
var atxt = new Array();

qtxt[0] = '"...Datalogics has proven they can help software developers using the Adobe PDF Library SDK get to market faster..."';
atxt[0] = '- Eugene Lee, VP Product Marketing, Adobe Systems, Inc.'; 

qtxt[1] ='"A critical factor for us was the level of effort involved in integrating the technology with FileSECURE. We found the effort to be minimal and the support from Datalogics to be first class."';
atxt[1] = '- Gary Clueit, President, AirZip';

qtxt[2] = '"Datalogics has a very skilled and responsive support team. We are very satisfied with both the level of support (technical and otherwise) as well as the degree to which they'+"'"+'ve made themselves accessible to us."';
atxt[2] ='- Gaby Mizrahie, Sr. Director R&D, Consist Technologies Ltd.';

qtxt[3] = '"By using the Adobe PDF Library from Datalogics to provide PDF support we have expanded our library of supported formats and enhanced the credibility of this aspect of our products."';
atxt[3] = '- Chris Rogers, General Manager, Arden Software Limited';

qtxt[4] = '"Datalogics, and the Adobe SDK, provides us with incredible leverage and the opportunity to focus on what we do best at Color Control Network. There is no doubt this is paying for itself many times over."';
atxt[4] = '- John Jeffus, CTO, Color Control Network';

qtxt[5] = '"What we realized in the end was that we couldn'+"'"+'t afford _not_ to use the Adobe PDF Library. It remains a critical piece of our core software, and is something from which we see a return on our investment every day."';
atxt[5] = '- Jacob Salomonsen, Director, Integration X';

qtxt[6] = '"Thanks to the Datalogics solution, you have solved a major problem for us and our clients."';
atxt[6] = '- Paul Wendt, Senior Architect, IPRO Tech';

qtxt[7] = '"I love using [the Adobe PDF Library] - we were using a mish-mash of other tools and this API makes our product so much better."';
atxt[7] = '- Steve Lomicka, Senior Developer, iDatix Corporation';

qtxt[8] = '"Datalogics support has provided superb help with very short turnaround time that enables us to resolve problems in our products accurately and quickly."';
atxt[8] = '- Hoc Huynh, Software Developer, Open Text Corporation';

qtxt[9] = '"We recently implemented some image transformation code using the Adobe PDF Library (DLE) and it was awesome - easy, intuitive and reliable!!  SOOO glad we have the DLE at our disposal."';
atxt[9] = '- Craig Jacobs, Director, Printing Systems, Mimeo';

qtxt[10] = '"The Adobe PDF Library sample code, provided by Datalogics, only needed to be slightly modified to easily meet our needs. I will definitely recommend using this library to others in the business."';
atxt[10] = '- MaryGail Broussard, Chief Architect, PMG Software Professionals, LLC';

qtxt[11] = '"The Adobe PDF Library was able to do exactly what we needed and Datalogics worked with us to come to an agreement that worked for both us and them."';
atxt[11] = '- Jim Taylor, Managing Director, ixPressia';

qtxt[12] = '"Support for the Adobe PDF Print Engine, from Datalogics, was invaluable."';
atxt[12] = '- Marco Abbate, System Engineer - JDF Expert, Luescher Italia';

qtxt[13] = '"Adobe Content Server from Datalogics represents a perfect union of excellent technology and great sales and support service. NeoSoar leverages this combination to build brilliant products and services."';
atxt[13] = '- John Liang, General Manager, NeoSoar Inc';




// **************** CODE BEGINS HERE *****************

setInterval('rotateQuote()', 15000);


function rotateQuote() {
	
	var i=0;

	i=Math.floor(Math.random()*qtxt.length);
	clearElements ("quote");
	randomQuote("quote", i);

}


function randomQuote(id, index) {


var qpara=document.createElement("p");
var qtxtnode = document.createTextNode(qtxt[index]);
qpara.appendChild(qtxtnode);

var apara = document.createElement("p");
apara.setAttribute("class", "qauth");
var atxtnode = document.createTextNode(atxt[index]);
apara.appendChild(atxtnode);

document.getElementById(id).appendChild(qpara);
document.getElementById(id).appendChild(apara);
}


function clearElements (id) {


var elem = document.getElementById( id );

if ( elem.hasChildNodes() )
	while ( elem.childNodes.length >= 1 )
	{
		elem.removeChild ( elem.firstChild);
	}
}




// Execute onLoad, in all browsers

if (window.addEventListener) //DOM method for binding an event
window.addEventListener("load", rotateQuote, false)
else if (window.attachEvent) //IE exclusive method for binding an event
window.attachEvent("onload", rotateQuote)
else if (document.getElementById) //support older modern browsers
window.onload=rotateQuote


