Nivo Slider notes deal with the problem in chrome or Safari
Do you hav previous image reloads during transition in Chrome ?
If you look at the server log file, you will find the chrome will be each time you change the map once again load the picture is because each picture to reload the picture will flash, in addition to constantly reload the picture website content charges of unnecessary bandwidth.
Know that after this point you can start from the image cache, if it is php or program output image file
First joined
header("Cache-Control: private, max-age=1800");
This line allows the browser to use the cache, but! Chrome or invalid, must be supplemented
header("Pragma: cache");
To make the chrome to access the cache.
This not only solve the traffic wasted problems solved field effect flashing.