$(document).ready(function()
{
	$('#nav>ul>li').hover(function()
	{
		$('span', this).toggleClass('hover');
		if( $('ul', this).length )
		{
			$('ul', this).toggle();
		}
	});
	
	$('input[type=radio]').focus(function()
	{
		if( $(this).next().next().is('textarea') )
		{
			$(this).siblings('textarea').focus();
		}
	});
	
	$('input[type=radio] ~ textarea').focus(function()
	{
		if( !$(this).siblings('input[type=radio]').last().attr('checked') )
		{
			$(this).siblings('input[type=radio]').last().attr('checked', true);
		}
	});
});
