$(document).ready(function() {
	$("#progList > div > ul.page").next().hide();
	$("a.btnNext").click(function() {
		$(this).parents('ul').fadeOut("fast", nextPage);
		return false;
	});
	$("a.btnPrev").click(function() {
		$(this).parents('ul').fadeOut("fast", prevPage);
		
		return false;
	});
});

function nextPage(){
	$(this).next('ul').fadeIn("fast");
}
function prevPage(){
	$(this).prev('ul').fadeIn("fast");
}