var timeDelay = 20; // change delay time in seconds

var image=new Array()
image[0] = '../images/leftpic_1.jpg';
image[1] = '../images/leftpic_2.jpg';
image[2] = '../images/leftpic_3.jpg';
image[3] = '../images/leftpic_4.jpg';
image[4] = '../images/leftpic_5.jpg';
image[5] = '../images/leftpic_6.jpg';
image[6] = '../images/leftpic_7.jpg';
image[7] = '../images/leftpic_8.jpg';
image[8] = '../images/leftpic_9.jpg';
image[9] = '../images/leftpic_10.jpg';
image[10] = '../images/leftpic_11.jpg';
image[11] = '../images/leftpic_12.jpg';

var Quotation=new Array()
	// QUOTATIONS
	Quotation[0] = '"Meeting the complex software needs of project-oriented manufacturers with easy-to-use solutions is all we do. And because we spend time everyday with companies like yours, no vendor knows your business better. Which is why, even when you have mixed-mode requirements that call for ETO, MTO, MTS, ATO and BTO manufacturing, our Finesse ERP software has you covered like no one else." <p class="text_blue2" align=right>We help you prepare ... even when you don\'t know what\'s coming.</p>';
	Quotation[1] = '"The education Enhanced Systems provided upfront to our functional team leaders shortened our simulation process and provided a realistic picture of a delivered solution that met our expectations. Enhanced Systems\' personalized approach to customer support furnished UT/ASD with a high level of confidence resulting in quick productivity gains for our users and managers." <p class="text_blue2" align=right> - Ray Scott<br>&nbsp; United Technologies / Advanced Systems Division';
	Quotation[2] = '"Finesse\'s e-commerce capabilities produce real-time information exchange for our customers and suppliers. Vendors can see our open purchase orders, request for quotation and other transaction details. This significantly reduces the time it takes for us to reconcile account information and validate quotations."<p class="text_blue2" align=right>- Ken Knollman<br>&nbsp; Teleflex, Inc. / GKN Aerospace, Engine Products Division';
	Quotation[3] = '"One of the attractive features of Finesse is the tight integration of a production schedule to material requirements. The ability to notify purchasing to reschedule major material receipts when the production schedule changes means we won\'t have $1,000,000 of equipment sitting on the floor nine months before it is actually needed, as has happed to us in the past. We have a very flexible workforce and Finesse scheduling offers us the opportunity to easily reallocate people from one resource pool to another to accomplish the necessary delivery commitment."<p class="text_blue2" align=right>- Mike Madison<br>&nbsp; CFO, Integrated Flow Solutions';
	Quotation[4] = '"The system we had before we bought Finesse didn\'t interconnect - the separate modules didn\'t \'talk\' to each other. With Finesse\'s integrated system, we were able to reduce the waste involved with the duplication of entry and increase productivity."<p class="text_blue2" align=right>- Greg McCann<br>&nbsp; Amoco Oil Company<br>&nbsp;Waste-Tech Services Division';
	Quotation[5] = '"We have gone through substantial growth in the last few years. When we bought Finesse, we had about 250 employees. Since then, we\'ve grown to around a dozen locations with 500 employees; there\'s no way we could have had that kind of growth without this software, and the kind of flexibility that it offers."<p class="text_blue2" align=right>- Brent Comstock<br>&nbsp; Power Engineers';
	Quotation[6] = '"As a publicly-traded manufacturing company with SEC, SOX and DoD contractor requirements we need robust data mining capabilities that allow managers and users the ability to better understand and analyze costs, project details and business trends. After a nine month evaluation we chose to run our business with Finesse."<p class="text_blue2" align=right>- Ken Wallace<br>&nbsp; Chief Financial Officer<br>&nbsp; Applied Energetics';
	Quotation[7] = '"We needed an ERP solution that would track all costs, material and labor and procurement activities on a project basis. It also had to allow us to efficiently enter parts into the system, send RFQs to vendors and track them by project, create custom reports and allow authorized users to easily extract information they need. Looking ahead, we also required a future path to Web integration for vendors and clients."<p class="text_blue2" align=right>- Dan Sanford<br>                              &nbsp; Kobe Steel / Midrex Division';
	Quotation[8] = '"Finesse will not only allow us to capture all of the information we need, it will deliver cost and time savings by streamlining the entire process of obtaining the information, eliminating repeated entries, and delivering all of the reports without the need for custom programming."<p class="text_blue2" align=right>- Bill Johns<br> &nbsp; President, Senior Systems Technology';
	Quotation[9] = '"Finesse is one of a few packages that natively support "engineer-to-order," a software category that describes Westwind\'s business of engineering, manufacturing, and installing conversion kits for military and search and rescue helicopters."<p class="text_blue2" align=right>- Dave Otterson<br>&nbsp; President & CEO, WestWind Technologies, Inc';
	Quotation[10] = '"After extensive evaluation of many software suppliers, GKS selected Finesse for two primary reasons: the simplicity and flexibility of the software and the knowledge and expertise of ESS personnel. The people at ESS made us feel very comfortable they understood our business demands and requirements and their other customers were just like GKS."<p class="text_blue2" align=right>-  Steve Church<br>&nbsp; President, George Koch Sons';
	Quotation[11] = '"The expertise of ESS personnel with both their own product and their knowledge of the business issues faced by ESI were the overriding factors in the selection of ESS’ Finesse ERP software. It was if the product was written specifically for Energy Sciences, Inc."<p class="text_blue2" align=right>-  Rich Danton<br>&nbsp; Director of Finance';
	
var howMany = image.length;
timeDelay *= 1000;
var PicCurrentNum = 0;
var PicCurrent = new Image();
PicCurrent.src = image[PicCurrentNum];

function startPix() {
setInterval("slideshow()", timeDelay);
}

function slideshow() {
PicCurrentNum++;
if (PicCurrentNum == howMany) {
PicCurrentNum = 0;
}

PicCurrent.src = image[PicCurrentNum];
document["ChangingPix"].src = PicCurrent.src;

which = PicCurrentNum;
document.getElementById('textrotator').innerHTML = Quotation[which];
	
}