$(function(){
	$('#ssPic img:gt(0)').hide();
	setInterval(function(){
		$('#ssPic :first-child').fadeOut(1000)
		.next('img').fadeIn(1000)
		.end().appendTo('#ssPic');}, 4000);

});

