/* news page */

$(function(){
	if ( $("#listeActus").size() >= 1){
		
		$("#listeActus").paginate({
			items:'.item',
			nbElemsPerPage:parseInt($("#listeActus").attr("title")),
			nbPagesMax:8,
			bShowAfter:false,
			strNext: '',
			strPrev:'',
			strFirst:'',
			strLast:'',
			startIndex:/*$("#listeActus").find("input[@name=startIndex]").val()*/1,
			paginateBox:$("#paginationNews")
		});
		
	}
});