jQuery.noConflict();
jQuery(document).ready(function($){


	$('#slideshow').everyTime(4000, function(){
		currentimg = $('#slideshow').find('.active');
		nextimg = $(currentimg).next();

		if(!$('#slideshow').find('.active').is(':last-child')){

			$(currentimg).fadeOut(600, function(){
				$(currentimg).removeClass('active');
				$(nextimg).addClass('active');
				$(nextimg).css('display', 'none');
				$(nextimg).fadeIn(600);
			});

		}
		else {
			nextimg = $('#slideshow').find(':first-child');
			$(currentimg).fadeOut(600, function(){
				$(currentimg).removeClass('active');
				$(nextimg).addClass('active');
				$(nextimg).css('display', 'none');
				$(nextimg).fadeIn(600);
			});

		}
	});
	
});
