var qcnt = 0;
var qcur = 0;

$(document).ready(function(){
	_load();
});
function _load() {
	qcnt = 0;
	qcur = 0;
	$('#idol').mouseover(function() {
		$('#chat-bubble').show('fast');
	}).mouseout(function() {
		$('#chat-bubble').hide('fast');
	});
	$('.quote-block').each(function(index) {
		qcnt += 1;
	});
	qq();
}
function qq() {
	$('#quote'+qcur).fadeIn('fast');
	$('#avatar'+qcur).animate({
		top: '-=20',
		left: '+=5',
		rotate: 6
	}, 500);
	if(qcur>=qcnt) { $('#quotes-wrap').load('/ #quotes-wrap > *', function() { _load(); }); }
	setTimeout("$('#quote"+qcur+"').fadeOut('slow', function() { qcur+= 1; qq(); });", 10000);
}
