$(function() {
	$(".answer").hide( );
	$(".answer:first-child").fadeIn( );
	
	$(".question").click( function( ){
		var target_id = "#" + $( this ).attr( "id" ) + "_a";
		$(".answer").hide( );
		$(target_id).show( );
	});
	
	if( $("#lyr1").height( ) < 320 )
	{
		$("#scrollbar1").hide( );
	}
	
	$("#nav>li").hover(
		function( ){ $( this ).addClass( "sfhover" ); },
		function( ){ $( this ).removeClass( "sfhover" ); }
	);
});