//Random Quote Rotator

//quote array
quoteList = new Array();
	
quoteList[0] = "His work is beautiful and natural and I am more than happy with my new 'look'.";
quoteList[1] = "I always recommend him to any friends thinking about plastic surgery.";
quoteList[2] = "I received excellent results from Dr. Del Vecchio at Back Bay plastic Surgery. I had breast augmentation and I could not have been happier with my results.";
quoteList[3] = "Dr. Del Vecchio was spoken very highly by many people that have worked with him. He could not have done a better job on my breasts. He made the procedure painless.";
quoteList[4] = "I couldn't be more satisfied, and feel my results speak for themselves.";
quoteList[5] = "I am extremely pleased with my results. The entire process was very pleasant. His office is clean, comfortable and relaxing and the office staff were friendly and professional.";
quoteList[6] = "My results were more amazing than I expected!";
quoteList[7] = "I am amazed at how natural they look and feel. I have already recommended him to two of my friends, and would recommend him highly to anyone considering surgery.";
quoteList[8] = "I am delighted with the results of both surgeries and if I ever decide to have another cosmetic procedure, without a doubt Dr. Del Vecchio will be my surgeon.";	
quoteList[9] = "I have been waiting all my life to find a surgeon I could really trust and I was lucky enough to bump into Dr. Del Vecchio. From day 1 I felt extremely confortable and happy to put my life in his hands although it was going to be a common liposuction, or so they say.";
	
	
//randomization
var now = new Date();
var secs = now.getSeconds();
var raw_random_number = Math.random(secs);
var random_number = Math.round(raw_random_number * (quoteList.length));

if (random_number == quoteList.length){random_number = 0}
	
	
//set quote
var quote = quoteList[random_number];
	
