i\'m using the jquery fadein fadeout with the slow option, but it\'s still a little too fast for me. now i\'ve read that you can only choose between fast and slow, but is th
Use a number of milliseconds rather than 'fast' or 'slow'
e.g.
$('#myID').fadeIn(100, function() { // complete });
See http://api.jquery.com/fadeIn/