This is an example of how can you create a fade slider with jQuery without including plugings.
$("#slider > a:gt(0)").hide();
setInterval(function() {
$('#slider > a:first')
.fadeOut(1000)
.next()
.fadeIn(1000)
.end()
.appendTo('#slider');
}, 5000);