I have a script that works, however the background images are "popping" in and not fading in and out smoothly. They change instantly. I am only testing 2 backgrounds right now, not 4.
This is my new Fiddle.
It is only toggling between the 1st background image and the 4th.
EDIT: New JQuery is below:
$(document).ready(function(){
setInterval(function() {
$("body").toggleClass('background2', 1000);
$("body").toggleClass('background3', 1000);
$("body").toggleClass('background4', 1000);
}, 3000);
});