var $jg = jQuery.noConflict();  
$jg(document).ready(function() {
	$jg('#novos-socios-slideshow').cycle({ 
	    delay:  3000, 
	    speed:  1000, 
	    before: onBefore 
	}); 
 
	function onBefore() { 
	    $jg('#nome_socio').html(this.alt); 
	}; 
});
