$(document).ready(function() {
        	$('#sponsor_rotate').cycle({ 
    			fx: 'scrollUp', 
  			 	timeout: 7000, 
    			before: onBefore, 
    			after: onAfter 
 			});
 			function onBefore() { 
    			$('#sponsor_output').html('<strong>Thank You!</strong><br /><span class="sponsor_name">' + this.alt + '</span>');
			} 
			function onAfter() { 
   				$('#sponsor_output').html('<strong>Thank You!</strong><br /><span class="sponsor_name">' + this.alt + '</span>');
			}
       	 });
