$(function()
{
	$('#news-container').jScrollPane({showArrows:true, scrollbarWidth: 17, arrowSize: 20});
	/* hack to show border when no scroll bar visible */
	var e = $('#news-container');

	if (e.siblings('[class=jScrollPaneTrack]').length < 1)
	{
		//e.width('261px');
		e.width(e.width() - (document.all ? 18 : 5));
		//alert('test');
	}
}
);
