[jQuery] animate on page load

[jQuery] animate on page load


Hi all
Please can you help?
I want to animate the width of the 'progress_bar' div when the page
loads. I'm using the code below, which works fine in Firefox... but it
doesn't want to work in IE6.
Where am I going wrong?
Many thanks in advance....
$(document).ready(function(){
    $("#progress_bar").animate({
width: "250px",
}, 1500 );
});