/**
 * help.js
 * REQUIRES jquery.JS TO FUNCTION
 * @author Ray
 */
 $(document).ready(function() {
   
   // question click code
	$('div.questionContent').each(function(i){
		var answerDiv = '#' + $(this).find(".hideQuestion").attr('id');
		$(this).find('a.question').click(function() {
		    $('.hideQuestion').hide();
			$(answerDiv).show(250);
			return false;
        });
	});
   
   // tab click code
   $('#helpMenu a').click(function() {
	     var tabName = $(this).html();
		 // selected classname
		 $('#helpMenu a').removeClass('selected');
		 $(this).addClass('selected');
		 // selected header image
		 $('.helpTitle img').hide();
		 $('#hdr_' + tabName).show();
		 // show tab container
		 $('.tab_container').hide();
		 $('div#' + tabName).show();
		 return false;
    });
	
 });
