$(document).ready(function() {
    $('.rotator').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	$('.q').click(function() {
		$(this).next().toggle('slow');
		return false;
	}).next().hide();
	
	
	
});
