$(function()
{
	$("#content .main .news").jCarouselLite(
	{
		visible: 3,
		auto: 5000,
		circular: true,
		speed: 1000
	});

	$("#content .main .quotes").jCarouselLite(
	{
		visible: 3,
		auto: 5000,
		circular: true,
		speed: 1000
	});

	$("#content .comment.more").each(function()
	{
		$(this).append('<a href="#">[more]</a>');
	});

	$("#content .comment.more a").live("click", function(event)
	{
		event.preventDefault();

		if($(this).hasClass("visible"))
		{
			$(this).removeClass("visible").html("[more]").parent().find("p").hide();
			$(this).parent().find("p.visible").show();
		}
		else
		{
			$(this).addClass("visible").html("[less]").parent().find("p").show();
		}
	});
});
