// From John Young, after Randy, Chris and I fixed JS bugs in The Sandy Pickle
// Don't break browsers that don't have firebug installed...
try {
	console.assert(1);
} catch(e) {
	console = {
		log: function() {},
		assert: function() {}
	}
}

$(document).ready(function(){
	$('#more-quotes .module').appendTo('#quotes');
	jQuery('#quotes').cycle({
		fx: 'fade',
		timeout: 3000,
		slideExpr: '.module',
		requeueOnImageNotLoaded: true,
		requeueTimeout: 250
	});
});