var arQuotes = new Array();
//Data stored:[quoteNum]( [0]=quoteText, [1]=quoteAttr)
arQuotes[0]=new Array("My company depends upon dealing with professionals and experts of the highest integrity. ABS understands this and has over the years been a source of information and expertise for our firm.",
    "Larry Silverstein,<br /> CEO, Silverstein Properties");
arQuotes[1]=new Array("Because of our longstanding relationship with ABS Partners, they understood our investment objective and subsequently assisted us in purchasing a prominent 5th Avenue building at the right value.",
    "Aby Rosen,<br /> Co-Founder, RFR");
arQuotes[2]=new Array("We were extremely pleased with how ABS Partners structured a lease with an option to buy for an office condominium near our main campus.",
    "David Soles, <br /> Associate V.P.,<br /> Real Estate Services,<br /> New York University");
arQuotes[3]=new Array("ABS Partners has the experience and a proven track record to understand past market trends and the foresight to apply the lessons to prepare for tomorrow's market shifts.",
    "Harold A. Meriam III,<br /> General Counsel, <br /> Helmsley Enterprises");
arQuotes[4]=new Array("ABS Partners Real Estate did much more than simply sell us a building. ABS listened to us and understood our property acquisition objectives and value criteria. Their professionalism was a key component in completing the assemblage we had been working to put together for years.",
    "Gary Barnett,<br /> CEO, Extell");

var speed = 10000;
var numQuotes = arQuotes.length;
var curQuote = Math.floor(Math.random() * numQuotes);

$(document).ready(function(){
  $(".navQuote .quoteText").html(arQuotes[curQuote][0]);
  $(".navQuote .quoteAttr").html(arQuotes[curQuote][1]);
  
  setInterval(function(){
    switchQuote()
  }, speed);
});

function switchQuote(showNum){
	
	curQuote++;
	
	if(curQuote >= numQuotes){
		curQuote = 0;
	}
	
  $(".navQuote .quoteText").html(arQuotes[curQuote][0]);
  $(".navQuote .quoteAttr").html(arQuotes[curQuote][1]);
  
}
