click event execute only part of function

click event execute only part of function

I'm newbie in using jQuery so maybe I do something wrong.

I have part of code like this:

$('div#menu').click(function() {
$('#list').SlideOutLeft(500);
setTimeout ("$('#turn').show();", 400);
setTimeout ("$('#turn').hide();", 600);
setTimeout ("$('#listct').SlideInRight(500);", 500);
return false;
});


It working properly in all older versions of jQuery but from 1.2 when I click it doesn't execute all as it should - just part of commands, one or two from beginning. How can I solve this problem?