Center aligning background image in IE 6?

I can’t seem to get my div’s background image to align center in IE 6, but it works just fine in IE 7 and Firefox. Here is what I’m using:

#container{
background-image:url(images/background.png);
background-repeat:no-repeat;
background-position:center top;
}

Any ideas? Thanks!

JPearson311