$(function()
{
	var newsWindow = $('#posts');
	newsWindow.children('li').width(376);
	newsWindow.slideWindow();
	$('#news-previous').click(function()
	{
		newsWindow.slidePrevious();
		return false;
	});
	$('#news-next').click(function()
	{
		newsWindow.slideNext();
		return false;
	});
});