I am using this plugin: http://slidesjs.com/
When I load my website: http://26splitrockcove.com/ in Firefox, this slideshow loads and works perfectly as it should. However when I load this website in Chrome or Safari it doesn't show anything, not even the preloading image, however it will soon show the slides, however it always waits until the last (or third) image in the slideshow, then when it transitions the transitions aren't how they should be.
Now, the really weird thing is that this only happens when you reload the page using the reload button, however if you click on the url and hit enter, in both Safari and Chrome - it works perfectly.
This is my javascript for it:
$(function(){
$('.home .slides').slides({
preload: true,
preloadImage: 'assets/loading.gif',
autoHeight: true, //before I used this, it didn't even show the third image at all
play: 5000,
slideSpeed: 1000,
effect: 'slide',
pagination: false,
generatePagination: false,
pause: 150,
hoverPause: true
});
});