$(function()
{
	var testimonialsWindow = $('#testimonials');
	testimonialsWindow.children('li').width(252);
	testimonialsWindow.slideWindow();
	$('#testimonials-previous').click(function()
	{
		testimonialsWindow.slidePrevious();
		return false;
	});
	$('#testimonials-next').click(function()
	{
		testimonialsWindow.slideNext();
		return false;
	});
});
