﻿// Not only when the DOM is ready, but when the images have finished loading,
// important, but subtle difference to $(document).ready();

$(window).bind('load', function () {

  // run the cross fade plugin against selector
  $('img.fadeOne').crossfade({'delay' : 600}, {'delay' : 900});
});