I have found the solution.
The problem was that I was creating the map when the DOM was ready with Jquery:
$(document).ready(function(){ ... //create map here [WRONG]
All you have to do is to create the map after the onload event:
window.onload = function() { ... // create map here [CORRECT]
Alin
2009-07-06 07:42:15