function slideShow() {
  
	$('.carousel:first').fadeIn(3000); 
	//$('.carousel').css({opacity: 0.0});
	//$('.carousel:first').css({opacity: 1.0});
	gallery();
	i=setInterval('gallery()',4000);
	
}

function gallery() 
{	
	var current = ($('.carousel.show')?  $('.carousel.show') : $('.carousel:first'));
	var next = ((current.next().length) ? ((current.next().hasClass('caption'))? $('.carousel:first') :current.next()) : $('.carousel:first'));	
	//Set the fade in effect for the next image, show class has higher z-index
	
  //Hide the current image
  current.fadeOut(1500).removeClass('show');
  
  //Set the fade in effect for the next image, show class has higher z-index
  next.fadeIn(1500).addClass('show');
}

$(document).ready(function()
{  
  slideShow();
  
  
});

