
$(document).ready(
	function()
	{
		$('#recent_options li.debate, #recent_options li.anchors li')
		.click(
			function ()
			{
				var href = null;

				$(this).children('div').children('a').each(
					function ()
					{
						if (!href)
							href = $(this).attr('href');
					}
				);

				if (href != null)
					document.location = href;

				return href == null ? false : true;
			}
		)
		.mouseover(
			function ()
			{
				$(this).addClass('active');
			}
		).mouseout(
			function ()
			{
				$(this).removeClass('active');
			}
		);
	}
);

