var quotes = new Array(
	"He must inevitably be among the greatest of his time.",
	"Music making with Anshel Brusilow over the years has given me enormous pleasure.",
	"He is a first-rate musician and a gentleman of great charm.",
	"Anshel Brusilow is truly a complete musician."
);
var attribs = new Array(
	"LEONARD BERNSTEIN",
	"LEONARD ROSE",
	"ARTHUR FIEDLER",
	"HENRYK SZERYNG"
);
function rand ( min, max ) {	// returns pseudorandom integer between min and max
	return Math.floor(Math.random() * (max - min + 1) + min);
}
function fader() {
	document.getElementById('q').innerHTML = '&ldquo;' + quotes[i++] + '&rdquo;';
	document.getElementById('a').innerHTML = attribs[j++];
	if (i >= quotes.length) {
	   i = 0;
	   j = 0;
	}
	$('#flashy').fadeIn(5000);
	$('#flashy').fadeOut(3500, fader); // effect is async so loop via callback
}
var i = rand(1,quotes.length) - 1; // global index into quotes array
var j = i; // global index into attribs array

$(document).ready(function(){
	document.getElementById('flashy').style.display = "none"
	fader();
});

