﻿$(function() {
 if ($('#photo-header').length)
  $('#photo-header').crossSlide({
   sleep: 3,
   fade: 4
  },
  [{ src: '/images/tops/main/9.png',
     alt:  'Добро пожаловать'},
   { src: '/images/tops/main/10.png'},
   { src: '/images/tops/main/11.png'}
  ], function(idx, img, idxOut, imgOut) {
  if (idxOut == undefined)
  {
    // starting single image phase, put up caption
    $('#caption').text(img.alt).fadeIn().animate({ opacity: .7 })
  }
  else
  {
    // starting cross-fade phase, take out caption
    $('#caption').fadeOut()
  }
  });
});
