


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] = '"With the integration of Adobe PDF JobReady, we nearly eliminate errors caused by improper file preparation."';
atxt[1] = '- Tawnya Starr, President, PrinterPresence';

qtxt[2] ='"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[2] = '- Gary Clueit, President, AirZip';

qtxt[3] = '"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[3] ='- Gaby Mizrahie, Sr. Director R&D, Consist Technologies Ltd.';

qtxt[4] = '"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[4] = '- Chris Rogers, General Manager, Arden Software Limited';

qtxt[5] = '"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[5] = '- John Jeffus, CTO, Color Control Network';

qtxt[6] = '"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[6] = '- Jacob Salomonsen, Director, Integration X';

qtxt[7] = '"Thanks to the Datalogics solution, you have solved a major problem for us and our clients."';
atxt[7] = '- Paul Wendt, Senior Architect, IPRO Tech';

qtxt[8] = '"Datalogics has proven to be a very reliable and professional partner. We needed PDF JobReady to be adjusted to fit our needs and they did a great job. Highly recommended, no matter what region of the world you are located!"';
atxt[8] = '- Harry Stuurman, IT & Communications Manager, Repro- van de Kamp';

qtxt[9] = '"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[9] = '- Steve Lomicka, Senior Developer, iDatix Corporation';

qtxt[10] = '"…after talking to Datalogics and evaluating the software in-house, in the end we concluded that Adobe PDF JobReady and Datalogics represented the best technology and support combination."';
atxt[10] = '- Dave Hultin, Managing Partner, WebsitesForPrinters.com';

qtxt[11] = '"Datalogics support has provided superb help with very short turnaround time that enables us to resolve problems in our products accurately and quickly."';
atxt[11] = '- Hoc Huynh, Software Developer, Open Text Corporation';

qtxt[12] = '"After a few days toil over the Greek of Adobe C, I discovered a light in the wilderness – Datalogics .NET implementation for the common man.  Now, all is understood and there is great rejoicing throughout the land!"';
atxt[12] = '- Craig Jacobs, Director, Printing Systems, Mimeo';

qtxt[13] = '"PDF JobReady allows the Infigo product to have a real edge over the competition"';
atxt[13] = '- Douglas Gibson, Infigo Product Manager, Bytes Document Solutions';

qtxt[13] = '"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[13] = '- MaryGail Broussard, Chief Architect, PMG Software Professionals, LLC';


// **************** 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

