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

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