$(document).ready(function() {
	$('#gallery.rotating ul li:first').addClass('show'); 
	slideShow();
});

function slideShow() {
	$('#gallery.rotating li').css({ opacity: 0.0});
	
	$('#gallery.rotating li:first').css({ opacity: 1.0 });
	
	setInterval ('gallery()',3000);
}

function gallery() {
	var current = ($('#gallery.rotating li.show')? $('#gallery.rotating li.show') : $('#gallery.rotating li:first')); 
	var next = ((current.next().length) ? ((current.next().hasClass('show'))? $('#gallery.rotating li:first') :current.next()) : $('#gallery.rotating li:first'));
 	next.css({opacity: 0.0})  
		.addClass('show')  
	    .animate({opacity: 1.0}, 1000);  
	    current.animate({opacity: 0.0}, 1000)  
	    .removeClass('show');     
	
}
