$(function(){
	$('#rotator').cycle({ 
	    fx:     'fade', 
	    timeout: 5000, 
	    before:  onBefore, 
	    after:   onAfter,
	    next:   '#next', 
    	prev:   '#previous' 
	 });
	 
	 function onBefore() { 
	    $('#rotatorData').html("Loading..."); 
	} 
	function onAfter() { 
	    $('#rotatorData').html('<h2>' + this.alt + '</h2><p>' + this.title + '</p>'); 
	}
	
	/*$('.user-created-poll-wrapper').jScrollPane();*/
});
