function Slider()
{
	var $active = ( $('#NIC-Slider ul li.active').length == 0 ) ? $active = $('#NIC-Slider ul li:first') : $('#NIC-Slider ul li.active');
	var $next = ( $active.next().length == 0 ) ? $('#NIC-Slider ul li:first') : $active.next();
	$active.addClass('last-active');
	$active.children('span').animate({bottom: -28}, 1000, function () {
	$next.children('span').animate({bottom: 0}, 1000); });
	$next.css({opacity: 0.0})
		.addClass('active')
		.animate({opacity: 1.0}, 1000, function () {
				$active.removeClass('active last-active');
			});
}
$(function () {
	var playSlide = setInterval('Slider()', 4000);
});