/**
 * @author Buddy
 */

$(document).ready(function(){
	
		
	$('#testimonialBox').load('quotes.html');
	loadScroller = function(){
		/*if($.browser.msie){
			$('p.quote').css({
				fontFamily: '"Arial Black", Arial, sanserif',
				fontWeight: 'normal'
			});
		}*/
		$('#testimonialBox').cycle({
			fx: 'fade',
			speed: 10000,
			random:  1,
			pause:  1
		});
		$('#testimonialBox').click(function(){
			window.location.href = "candidates-testimonials.htm";
		});
	}
	setTimeout('loadScroller()', 800);
});