function changeImage() {
	$('#slideshow > ul > li:first').slideUp('slow', function() {
		var slide = $(this).clone();
		$(this).remove();
		$('#slideshow > ul').append(slide.show());
		setTimeout('changeImage()', 6000);
	})
}



$(document).bind('ready', function() {
	setTimeout('changeImage()', 6000);
	
	$(function () {
	    $('#js-news').ticker({
	        controls: false,
	        titleText: '',
	        displayType: 'fade', // Animation type - 'reveal' or 'fade'
			pauseOnItems: 2000,    // The pause on a news item before being replaced
			fadeInSpeed: 600,      // Speed of fade in animation
			fadeOutSpeed: 300      // Speed of fade out animation
	    });
	});  
});
