﻿// File JScript
var oclone ;
$(document).ready(function() {
		$("a#prevPage").click(function(){ 
           $('#banLista').children('li:first-child').hide('slow', function()
           {
		       $('#banLista').children('li:first-child').clone().appendTo('#banLista');
               $('#banLista').children('li:last-child').show(); 
               $('#banLista').children('li:first-child').remove(); 
            });
		});
		$("a#nextPage").click(function()
		{
		 $('#banLista').children('li:last-child').hide();
		 $('#banLista').children('li:last-child').clone().prependTo('#banLista');
         $('#banLista').children('li:last-child').remove(); 
         $('#banLista').children('li:first-child').show('slow'); 
		});
});

