Niente, nula continua a fare l'animazione più volte! :| Questo è il codice:

codice:
$('#photos').mouseover( function() {
	$(this).animate({
		width: '90', } , 1500 );
	$("#t_photos").animate({
		opacity: '1', } , 1500 );
	
}).mouseout( function() {

	$(this).animate({
		width: '30', } , 1500 );
	$("#t_photos").animate({
		opacity: '0', } , 1500 ); 

});