I\'m using a very simple fadeIn and fadeOut in Chrome. I just want one text element to fade out and another to fade in. Working example: http://jsfiddle.net/forgetcolor/7eR5Q
If you feel like the fadeIn is happening too quickly, increase the time up to 600,
$('#txt1').fadeIn(600); and $('#txt2').fadeIn(600);
seemed a bit more even for me.