$(document).ready(function(){
	$('#news_container').css('display', 'none');
    initPagination();
});

function initPagination() {
    var num_entries = $('#news_container li.result').length;
    // Create pagination element
    $("#blog_navi").pagination(num_entries, {
        num_edge_entries: 0,
        num_display_entries: 0,
        callback: pageselectCallback,
        items_per_page:2,
		prev_text: ss.i18n._t('FrontPage.EDELLISET', 'Edelliset'),
		next_text: ss.i18n._t('FrontPage.SEURAAVAT', 'Seuraavat')
    });
 }
 
function pageselectCallback(page_index, jq){
	var p1 = page_index * 2;
	var p2 = p1 + 1;
    var new_content = $('#news_container li.result:eq('+ p1 +')').clone();
    $('#news_paging').empty().append(new_content);
	if ($('#news_container li.result:eq(' + p2 + ')') ) {
		var new_content = $('#news_container li.result:eq(' + p2 + ')').clone();
		$('#news_paging').append(new_content);
	}
    return false;
}