var images = new Array ('images/tour_program_banner1.jpg', 'images/tour_program_banner2.jpg', 'images/tour_program_banner3.png');
var h_images = new Array ('_common/images/h_s_img1.jpg', '_common/images/h_s_img2.jpg', '_common/images/h_s_img3.jpg', '_common/images/h_s_img4.jpg');
var index = 1;
 
function rotateImage()
{
  $('#myImage').fadeOut('fast', function()
  {
    $(this).attr('src', images[index]);
 
    $(this).fadeIn('fast', function()
    {
      if (index == images.length-1)
      {
        index = 0;
      }
      else
      {
        index++;
      }
    });
  });
} 
 
function rotateImageHome()
{
  $('#myImageHome').fadeOut('fast', function()
  {
    $(this).attr('src', h_images[index]);
 
    $(this).fadeIn('fast', function()
    {
      if (index == h_images.length-1)
      {
        index = 0;
      }
      else
      {
        index++;
      }
    });
  });
}

$(document).ready(function()
{
  setInterval (rotateImage, 3000); 
  setInterval (rotateImageHome, 2000);
});
