$(document).ready(function() {   

	Three60.Cycler.init({
	    items: Three60.rocket_scientist_quotes,
	    container: $('#three60-console'),
	    cycle_interval: 8000,
	    revolutions: 3,
	    style_callback: function(item) {
	        var str = '';
	        str += "<blockquote>";
	        str += "&ldquo;" + Three60.Utils.truncate(item.quote, 100) + "&rdquo;";
	        str += " <span class='author'>" + item.author + "</span>";
	        str += "</blockquote>";
	        return str;
	    }
	});   
	
});

