var topnews_table = document.getElementById('topnews_hidden').tBodies[0];
var topnews_count=topnews_table.rows.length;
var topnews_current=1;
var topnews_play=1;
var o_topnews_image = document.getElementById('topnews_image');
var o_topnews_title = document.getElementById('topnews_title');
var o_topnews_content = document.getElementById('topnews_content');
var o_topnews_date = document.getElementById('topnews_date');
var o_topnews_more = document.getElementById('topnews_more');
var o_topnews_count = document.getElementById('topnews_count');

function topnews_prev(){
	topnews_current--;
	if (topnews_current<1)
		topnews_current = topnews_count;
	topnews_show();
}
function topnews_pause(){
	topnews_play=1-topnews_play;
}
function topnews_next(){
	topnews_current++;
	if (topnews_current>topnews_count)
		topnews_current = 1;
	topnews_show();
}
function topnews_playtimer(){
	if (topnews_play==1)
		topnews_next();
}
function topnews_show(){
	var tr = topnews_table.rows[topnews_current-1];
	var id = tr.cells[0].innerHTML;
	var title = tr.cells[1].innerHTML;
	var date = tr.cells[2].innerHTML;
	var image = tr.cells[3].innerHTML;
	var content = tr.cells[4].innerHTML;
	if (image=='') 
		image = '/userfiles/news/default.gif';
	else
		image = '/userfiles/news/' + image;
	o_topnews_image.innerHTML = '<img alt="" style="border: 1px solid #cccccc;" src="' + image + '" width="300" height="165" />';
	o_topnews_title.innerHTML = '<b>'+title+'</b>';
	o_topnews_content.innerHTML = content;
	o_topnews_date.innerHTML = date;
	o_topnews_more.href = 'index.php/news/show/' + id;
	o_topnews_count.innerHTML = '['+topnews_current + ' из ' + topnews_count+']';
}
topnews_show();
setInterval('topnews_playtimer();', 5000);

