$(document).ready
(
	function()
	{
		$(".ae_expand").hover
		(
			function() 
			{
				$(this).css("color","red");
				$(this).css("cursor","pointer");
			}, 
			function ()
			{
				$(this).css("color","black");
				$(this).css("cursor","default");
			}
		);
		$(".ae_expand").click
		(
			function()
			{
				var thisid = $(this).attr("id");
				thisid = thisid.substring( 2 );
				if( $(this).text() == "+" )
				{
					$(this).text("-");
				}
				else
				{
					$(this).text("+");
				}
				$(".sub"+thisid).toggle();
			}
		); 

	}
);