//newsy
function selectNewsPack(packNewsNr){
	newsPackSel = packNewsNr;
	if(newsPackSel == 1 ){
	$('div.pager:last a.prev').addClass('hidden');
	$('div.pager:last a.next').removeClass('hidden');
	}else if(newsPackSel == lastNewsPack){
	$('div.pager:last a.prev').removeClass('hidden');
	$('div.pager:last a.next').addClass('hidden');
	}else{
	$('div.pager:last a.prev').removeClass('hidden');
	$('div.pager:last a.next').removeClass('hidden');
	}
	$('div.pager:last > a.nor').each(function(index){if((index+1)==newsPackSel){$(this).addClass('sel');}else{$(this).removeClass('sel');}});	
	$("div.newsList .item").hide();
	$("div.newsList .newspage_"+packNewsNr).show();
	
	var _h = parseInt($('#newsList').height());
	var _n_h = _h - 211;$('#newsList div.ie_m').height(_n_h);
	$('#newsList div.ie_b').attr("style","bottom:0;");
	$('#newsList div.footerPager').attr('style','bottom:20px;');
	/*window.location.hash="#aktualnosci";*/
}
function nextPrevNewsPack(dir){
	newsPackSel = newsPackSel+dir;
	if(newsPackSel <= 1){newsPackSel = 1;}else if(newsPackSel>=lastNewsPack){newsPackSel = lastNewsPack;}
	selectNewsPack(newsPackSel);		
}