// -*- coding:utf-8 -*-

function reinitialiseNewsScrollPane()
{
    $('#leftcolumn .scroll-pane').jScrollPane();
}


$(document).ready(function(){



	$("#moreNews").click(function(e) {
		$("#newsList").slideToggle(200);
	    });


	$(".news").click(function(e) {
		$("#leftcolumn .scroll-pane").html($(this).html());
		$('#leftcolumn .scroll-pane').load($(this).html(), '', reinitialiseNewsScrollPane);

	    });

	$(window).load(function() {
		$("#leftcolumn .scroll-pane").html($("#first-news").html());
		$('#leftcolumn .scroll-pane').load($("#first-news").html(), '', reinitialiseNewsScrollPane);
	    });


});
