// initialise plugins
$(document).ready(function() {
	$(function() {
		$('#rotate').cycle({
			timeout: 11000,
			random: 1,
			before: onBefore,
			cleartype:  true,
		    cleartypeNoBg: true
		}); 
	});
	function onBefore() {
		$('#rotate-by').html(this.title);
	}
});
