$(document).ready(function (){
	var currentItem = 0;
	var hlen        = $(".jqQuoteLoop").children().length;

	$(".jqQuoteLoop").everyTime( 5000, "myrotate", function(){
		$(this).children().slice(currentItem, currentItem+1).fadeOut('normal', function() {
			++currentItem;
			currentItem %= hlen;
			$(this).parent().children().slice(currentItem ,currentItem+1).fadeIn('slow');
		});
	});
	
	var currentItem1 = 0;
	var hlen1        = $(".jqQuoteLoop1").children().length;
	$(".jqQuoteLoop1").everyTime( 7500, "myrotate", function(){
		$(this).children().slice(currentItem1, currentItem1+1).fadeOut('normal', function() {
			++currentItem1;
			currentItem1 %= hlen1;
			$(this).parent().children().slice(currentItem1 ,currentItem1+1).fadeIn('slow');
		});
	});    
});
