// JavaScript Document
/*
Rotating image or text(You can use for changing banners)
Author: Narayan Chand Thakur
Source: http://ncthakur.itgo.com/
This may be used freely as long as this message is intact.
*/
<!--

//you may add your image file or text below
var item=new Array()
item[0]="...its as if your services are free to us by the time you negotiate deals we could never get on our own  We cant afford not to hire you!<br/><br/><span style='font-style: normal;'>-President, Insurance Marketing Organization</span>";
item[1]="...I had never planned a meeting out of the country and appreciate your help in working through the unknowns with us. We were looking for an event that was over the top and we received it. You listened to what we wanted and found it.<br/><br/><span style='font-style: normal;'>-Executive Assistant to the President, Commercial/Industrial</span>";
item[2]="...CEM brings innovative ideas to event management, such as new ways to handle logistics and continually went out of their way to make our planning process run smoothly and make our event successful.<br/><br/><span style='font-style: normal;'>-Program Manager, Leading Health Organization</span>";
item[3]="...EXCEPTIONAL! We have worked with other event planning companies in the past and the service and professionalism CEM provides is top notch. In every aspect of the planning process  contract negotiations, flight bookings, event coordination, and onsite assistance, just to name a few  CEM goes above and beyond to ensure a successful event.<br/><br/><span style='font-style: normal;'>-Chief Operations Officer, Financial Marketing Organization</span>";
item[4]="...I have traveled throughout the world to many conferences sponsored and arranged by many people and many companies  most were well done  yours were superb!<br/><br/><span style='font-style: normal;'>-MDRT President Emeritus, Financial Industry</span>";
item[5]="...I just wanted to take a moment to tell you how very pleased we are with all of the arrangements you have made for our company over the past year. We were able to work more efficiently because you took care of not only the major details, but the small ones that always seem to make a difference as well  we look forward to a long and successful relationship.<br/><br/><span style='font-style: normal;'>-Vice President, Financial Organization</span>";
item[6]="...Outstanding effort! Your staff is a 10 out of 10!<br/><br/><span style='font-style: normal;'>-Finance Firm</span>";
item[7]="...No one can adequately describe how your talent and abilities enabled us to make our convention a top-shelf affair. I dont know how you are ever going to top this, but I know you will.<br/><br/><span style='font-style: normal;'>-Chief Marketing Officer, Insurance/Finance Industry</span>";
item[8]="...It was a great experience and I hope that I am fortunate enough to participate in any of your planned events in the future. Thanks!<br/><br/><span style='font-style: normal;'>-Producer</span>";
item[9]="...You more than met our expectations for providing top notch entertainment as well as leaving us with a message of inspiration and hope. Thank you for making our event one of the best in 53 years!<br/><br/><span style='font-style: normal;'>-Manufacturing</span>";

var current=0

var ns6=document.getElementById&&!document.all
function changeItem(){
if(document.layers){
document.layerQuoteText.document.write(item[current])
document.layerQuoteText.document.close()
}
if(ns6)document.getElementById("divQuoteText").innerHTML=item[current]
{
if(document.all){
divQuoteText.innerHTML=item[current]
}
}
if (current==9) current=0
else current++
setTimeout("changeItem()",10000)
}
window.onload=changeItem
//-->

