// JavaScript Document

$(document).ready(function(){	
	$("#slider").show();
	$("#slider").easySlider({controlsShow: false, auto: true,vertical: true,
	speed: 1000,
	pause: 4000,
	continuous: true});
});





function getNews(nid) {
	//var c = $("#nt").html();
	//$("#newsticker>li").prepend('<img src=\"img/lmw.gif\" class=\"vam\"> ');
	//$("#nt").data('content',c);
	$("#slider").hide();
	$(".open").hide('fast');
	$("#tx-"+nid).show();
	//$.get("http://www.onlinehq.cz/r/ajax.news.get.php", { nid: nid }, function(data){
	//	   $("#news-text").show();
	//	   $("#news-text").html(data);

	//});
	return false;
}

function newsClose() {
	//var c = $("#nt").data('content');
	//$("#nt").html(c);
	$(".open").hide();
	$("#slider").show();

	//$("#newsticker").newsticker(5000);
	return false;
}




