/* set the opacity of the element (between 0.0 and 1.0) */
function setOpacity(level) {
  element.style.opacity = level;
  element.style.MozOpacity = level;
  element.style.KhtmlOpacity = level;
  element.style.filter = "alpha(opacity=" + (level * 100) + ");";
}
var element = document.getElementById('rightQuote');
var duration = 1000;  /* 1000 millisecond fade = 1 sec */
var steps = 20;       /* number of opacity intervals   */
var delay = 20000;     /* 20 sec delay before fading out */
var currentTestimonial = -1; /* leave this as -1 unless you want to set the initial testimonial */

function fadeIn(){
	setOpacity("0",1);
	  msgChange();

  for (i = 0; i <= 1; i += (1 / steps)) {
    setTimeout("setOpacity(" + i + ")", i * duration);
  }
  setTimeout("fadeOut()", delay);
}

function fadeOut() {
  for (i = 0; i <= 1; i += (1 / steps)) {
    setTimeout("setOpacity(" + (1 - i) + ")", i * duration);
  }
  setTimeout("fadeIn()", duration);
}


function msgChange()
{
var r_text = new Array ();
r_text[0] = "<p>I wanted to send you a note expressing how happy we are with our new facility.  It has exceeded our expectations.</p><p> From the beginning, Art Dombrowski has been helpful and easy to work with.  He is easy to get a hold of and very responsive.  Also, we appreciate the flexibility and creative approach to making this relationship work. We look forward to a long and successful partnership.<img src='images/quoteRight.png' style='margin:-5px 0 0 0; padding:0;' width='19' height='20' /></p><p class='11'>&nbsp;</p><p align='right' class='quoteName'>-Thomas Rossi<br>Chief Operating Officer<br>BullEx Digital Safety</p>";

r_text[1] = "<p>I would like to thank you and your entire construction team with the manner in which our building at 20 Corporate Circle was completed.  From start to finish, the decisiveness and integrity with which Art Dombrowski conducted himself not only during construction progress meetings, but with his unending assistance and suggestions extended to us as well.</p><p>It has been a pleasure working with your team and look forward to our future business endeavors from our new location, made possible by Hoffman Enterprises.<img src='images/quoteRight.png' style='margin:-5px 0 0 0; padding:0;' width='19' height='20' /></p><p class='11'>&nbsp;</p><p align='right' class='quoteName'>-Charles A. Brooks<br>MCD Mechanical Incorporated</p>";

r_text[2] = "<p>We have had a very good experience working with Hoffman Enterprises. In our experience, Hoffman Enterprises has been receptive to our needs, extremely flexible and a true partner in our growth and success.  It is likely that we would not be where we are today, if not for your partnering with us at a very early stage.  We look forward to working together, far into the future.<img src='images/quoteRight.png' style='margin:-5px 0 0 0; padding:0;' width='19' height='20' /></p><p class='11'>&nbsp;</p><p align='right' class='quoteName'>-Harold Meckler, Ph.D.<br>Vice President<br>Science, Technology & Support Services<br>AMRI, Inc.</p>";

r_text[3] = "<p>I wanted to send a quick &ldquo;thank you&rdquo; to you and your team for the great job you did for us in all aspects of our company&rsquo;s move into One Washington Square.  We&rsquo;re absolutely thrilled with the outcome and want you to know how much we appreciated all the extra effort to &ldquo;do it right&rdquo; exhibited by BBL, Art and all the various players in the planning and construction of our new space.</p><p>We couldn&rsquo;t be happier and thank you all for the great experience.<img src='images/quoteRight.png' style='margin:-5px 0 0 0; padding:0;' width='19' height='20' /></p><p class='11'>&nbsp;</p><p align='right' class='quoteName'>-Donald J. Kellish<br>President<br>Creative Materials Corporation</p>";

r_text[4] = "<p>I would like to take this opportunity to thank Hoffman Enterprises for the excellent job and dedication that was displayed throughout the construction of our new Corporate Circle facility.  The success of this project was due in large to the hard work and endless commitment demonstrated by yourself and Art.  Art was very helpful, courteous and his excellent attention to detail made the move to our new facility a smooth one.  We are extremely satisfied with our new facility and we look forward to a long term relationship with Hoffman Enterprises.</p><p>Thanks again for a job well done!<img src='images/quoteRight.png' style='margin:-5px 0 0 0; padding:0;' width='19' height='20' /></p><p class='11'>&nbsp;</p><p align='right' class='quoteName'>-Frank Minissale<br>Office Manager<br>Netrition Inc.</p>";

r_text[5] = "<p>In December 2006, when I decided to re-locate my child care center after 18 years, I never imagined how smoothly it would happen.  Due to your company and their knowledge, understanding, and care for their tenants the challenge was not as overwhelming as I had anticipated it to be.  My staff and I have found that our decision to move to Karner Park was a very good choice.</p><p>I would like to personally thank Art and Hoffman Enterprises for making this experience stress free and exciting.  Hoffman Enterprises has gone above and beyond a hundred times over for our center.  A move such as this one could have easily been overwhelming and hectic however, we could not have asked for a more pleasant experience.<img src='images/quoteRight.png' style='margin:-5px 0 0 0; padding:0;' width='19' height='20' /></p><p class='11'>&nbsp;</p><p align='right' class='quoteName'>-Christine M. Rinella<br>Director<br>Pumpkin Patch Child Care Center</p>";

r_text[6] = "<p>I would like to take a moment to comment on the wonderful experience that we have had dealing with your company. Art helped us figure out how much room we needed, and the construction completed turned it into space custom designed for my business.  Any requests are handled in a timely and professional manner and we couldn't be happier with our choice.<img src='images/quoteRight.png' style='margin:-5px 0 0 0; padding:0;' width='19' height='20' /></p><p class='11'>&nbsp;</p><p align='right' class='quoteName'>-Michael J. Ward, CFP<br>President<br>Ward Financial Management, LTD</p>";

if (currentTestimonial == -1) {currentTestimonial = Math.floor(Math.random() * 7);} else {currentTestimonial = (currentTestimonial+1) % 7;}

document.getElementById('rightQuote').innerHTML = r_text[currentTestimonial];

}

fadeIn();
//-->

