var images = new Array
(	
	'html/images/lifeplus_stnd.jpg',
	'html/images/lifeplus_pro.jpg',
	'html/images/lifecell_ic_basic.jpg',
	'html/images/lifecell_ic_standard.jpg',
	'html/images/lifecell_la_basic.jpg',
	'html/images/lifecell_la_standard.jpg',
	'html/images/lifecell_pc_basic.jpg',
    'html/images/lifecell_pc_standard.jpg',
    'html/images/lifecell_pt_basic.jpg',
    'html/images/lifecell_pt_standard.jpg',
    'html/images/lifecrm_basic.jpg',       
    'html/images/lifecrm_standard.jpg',
    'html/images/lifecrm_pro.jpg',
    'html/images/mobilelife_basic.jpg',
    'html/images/mobilelife_standard.jpg',
     'html/images/mobilelife_pro.jpg'
);

var index = 0;

function rotateImage()
{
  $('#myImage').fadeOut('fast', function()
  {
    $(this).attr('src', images[index]);
 
    $(this).fadeIn('fast', function()
    {
      if (index == images.length-1)
      {
        index = 0;
      }
      else
      {
        index++;
      }
    });
  });
}
 
$(document).ready(function()
{
  setInterval (rotateImage, 4000);
});

