$("body").ready
(
	function ()
	{
		$(".questionTitle:first").addClass("questionTitle2");
		$(".questionAnswer:first").slideDown("slow");
	}
);

function showQuestion(obj)
{
	$(".questionTitle").each(
		function (intIndex)
		{
			if ( this == obj )
			{	
				$(this).addClass("questionTitle2");
				$(".questionAnswer:eq(" + intIndex + ")").slideDown("slow");
				
				//$(this).animate( {backgroundColor: "#96EB96"} );
			}
			else
			{
				$(this).removeClass("questionTitle2");
				$(".questionAnswer:eq(" + intIndex + ")").slideUp("slow");
				
				//$(this).animate( {backgroundColor: "#F7F7F7"} );
			}
		}
	);
}