var Pic = new Array();
Pic[0] = 'testimonials/logo-staples.gif';
Pic[1] = 'testimonials/logo-unitedway.gif';
Pic[2] = 'testimonials/logo-savage.gif';
Pic[3] = 'testimonials/logo-bentley.gif';
Pic[4] = 'testimonials/logo-cone.gif';

var p1 = Pic.length;

var preLoad = new Array();
for (i = 0; i < p1; i++){
   preLoad[i] = new Image();
   preLoad[i].src = Pic[i];
}

var Quotes = {
  data: [
    {
      body: "\"Andrew Penziner Productions offers the entire package! From creative direction to precise planning, from superb execution to full attention on post-production needs, APP will ensure your project goes smoothly.\"",
      name: "Karen Pevenstein",
      title: "PR Manager",
      company: "Staples, Inc.",
      img: "testimonials/logo-staples.gif"
    },
    {
      body: "\"Not only was Andrew Penziner Productions incredibly organized and focused on our needs, they brought a vision to our project that was truly unique.\"",
      name: "Meghan Keaney Anderson",
      title: "Director, Communications",
      company: "United Way of Massachusetts Bay and Merrimack Valley",
      img: "testimonials/logo-unitedway.gif"
    },
    {
      body: "\"In their work on behalf of BBDO NY for P&G/Gillette, APP delivered exactly what was needed. Andrew's attention to detail and professionalism separate him from the pack.\"",
      name: "George B. Sholley",
      title: "Jr. Producer",
      company: "BBDO NY",
      img: "testimonials/logo_BBDO.gif"
    },
    {
      body: "\"Andrew Penziner Productions did a great deal of work for my company and went above and beyond expectations in every respect.\"",
      name: "Diane Savage",
      title: "Owner and President",
      company: "Savage Records, LLC",
      img: "testimonials/logo-savage.gif"
    },
    {
      body: "\"Andrew offers insightful creativity, detail-oriented plans, responsiveness, flexibility, and can work within a set budget - all key ingredients to our video production needs. I highly recommend APP to any organization.\"",
      name: "Michele Walsh",
      title: "Director, Public & Media Relations",
      company: "Bentley University",
      img: "testimonials/logo-bentley.gif"
    },
    {
      body: "\"Andrew is extremely professional and committed to his work. His video production expertise and creativity produced a stellar final product!\"",
      name: "Kate Dyer",
      title: "Account Executive",
      company: "Cone",
      img: "testimonials/logo-cone.gif"
    },
    {
      body: "\"It's Andrew's creative direction that so skillfully articulates the client's messaging and brand while bringing to life a complete vision for the project.\"",
      name: "Michael Ruzicka",
      title: "Director of Production",
      company: "WBZ-TV Boston",
      img: "images/clearpix.gif"
    }
  ],

  counter: 0,
  updateEvery: 10,
  update: function () {
    if (document.getElementById('quote')) {
      $('#quote').html(this.data[this.counter].body);
      $('#credit').html(this.data[this.counter].name+'<br />'+this.data[this.counter].title+'<br />'+this.data[this.counter].company);
	   document.images.clientlogo.src = this.data[this.counter].img;
    }
    setTimeout("Quotes.update();", this.updateEvery*1000);
  	this.counter = (this.counter+1)%this.data.length;
  }
}

