window.onload=function() {

var quote = $('quote_box');
var sfx = new Fx.Style('quote_box', 'opacity', {duration: 750, wait: false});
var ajacks = new Ajax('/quotes.php',{
	update: quote,
	method: 'get',
	onRequest: function() {
		sfx.start(0);							
	},
	onComplete: function() {
		sfx.start(1);	
	}
});
var ajacks_request = function(){
	ajacks.request();
}
ajacks_request.periodical(3000);
}