<!-- Quote Rotator -->
$(document).ready(function(){
	$('#testimonials .slide');
	setInterval(function(){
		$('#testimonials .slide').filter(':visible').fadeOut(2000,function(){
			if($(this).next('div.slide').size()){
				$(this).next().fadeIn(1000);
			}
			else{
				$('#testimonials .slide').eq(0).fadeIn(1000);
			}
		});
	},1000);	
});	

<!-- Home Page Banner Rotator -->
$(document).ready(function(){
  $('#gallery').cycle({
    speed: 1200,
    timeout: 7000,
    pager: '#pager',
    pause: true,
    pauseOnPagerHover: true,
    next: '#next',
    prev: '#previous'
  });
});
