$(document).ready(function () {   
  
  var loaded = 0;
  
  $('#main .img ul li img').load(function () {
    if (loaded != 1) {
      $('.visual .img ul').innerfade({
        speed: 1500,
        timeout: 5000,
        type: 'sequence',
        containerheight: '375px'
      });
    }
    loaded = 1;
  });
});
