$( document ).ready(function(){
	$( '.answer' ).css( 'display', 'none' );
	
	$( 'ol > li > a' ).click( function(){
		$( this ).parent().children( '.answer' ).slideToggle();
		return false;
	});
	
	$( '.dashboardcontainer > h2 > a' ).click(function(){
		$( this ).parent().parent().children( 'ol' ).children( 'li' ).children( '.answer' ).slideToggle();
		return false;
	});
	
	var hash = location.hash;
	if( hash )
	{
		if( hash == '#rewardsa' )
		{
			$( '#rwa' ).click();	
		}
	}
});
