var start_timer;
var continue_timer;
var feedbacks = ["<p>Our company &shy; Wellsphere, Inc. has been continuously working with Svitla Systems for more than a year and a half now and they have been delivering us outstanding software development and testing services. We are very happy with the quality and timing of their delivery, the quality of their work makes them stand out among other vendors we have been using the past and we have all intentions of keeping a strong long-term relationship with Svitla Systems going forward.</p><p><b>Dave Kashen</b><br> Co-founder of Wellsphere, Inc., now part of Heath Central Network<p>",

"<p>When I needed software developed for my Zfone VoIP encryption project, I had limited budget to work with- Fortunately, I started working with Svitla Systems, they got the job done. I am still using them and plan to keep doing so.</p><p><b>Phil Zimmermann</b><br>Founder of PGP and Zfone</p>",

"<p>As a development director in small businesses I have worked with several off-shore software development companies. I have had to juggle limited budgets and wear multiple hats. I have used Svitla for the last two years and I must say that they have done the best job of any offshore developers I have ever worked with. They are technically capable, extremely hard working, produce good quality code quickly, and have displayed a level of flexibility with taskings, scheduling and resources that has really made a difference for my company. They have worked hand-in-glove with us. I have no hesitation about using them again in the future.<br><b>Shae Murphy</b><br>President www.MyDecisionHelper.com</p><p></p>" ]
var current=0;
function start() {
   $('#testimonials_slider').html(feedbacks[current]);
   start_timer = setInterval("next()", 40000 );
}
function next() {
   $('#testimonials_slider').fadeOut("fast", function(){$('#testimonials_slider').html(feedbacks[current]).fadeIn("fast")});
   current += 1;
   if (current == 3) {current = 0};
}

function testimonials() {
   $('#testimonials_slider').bind("mouseenter", function(){$('#control').fadeIn("slow");clearInterval(start_timer);});
   $('#testimonials_slider').bind("mouseleave", function(){$('#control').fadeOut("slow");start_timer = setInterval("next()", 5000 );});
//   start_timer = setInterval("next()", 5000 );
   setTimeout("start()", 500);
};
