// JavaScript Document
$(document).ready( function(){
	$('.showLink').attr('href','#');
	$('.showLink').attr('title','Click to show answer');
	$('div.more').css('display','none');
	$('.showLink').click(function () {
		if ($('#'+$(this).attr('id')+'-ans').css('display') == 'none') {
			$('#'+$(this).attr('id')+'-ans').css('display','block');
		} else {
			$('#'+$(this).attr('id')+'-ans').css('display','none');
		}
		return false;
	});
	$('.hideLink').click(function () {
		$(this).parent().css('display','none');
		$(this).parent().prev().children().children().focus();
		return false;
	});
	$('#expandCollapse a:first').click(function () {
		$('.more').css('display','block');
		return false;
	});
	$('#expandCollapse a:last').click(function () {
		$('.more').css('display','none');
		return false;
	});
});