$(function(){
	$('#help_list').pophelp();
	if (help_section != "null" && help_topic != "null"){
		$('#section' + help_section + '_' + help_topic).show();
		$('#section' + help_section + '_' + help_topic).parent().addClass('open').removeClass('closed');
		$('#section' + help_section + '_' + help_topic).parent().next('div').show();
		
		if(help_subtopic != "null"){
			$('#section' + help_section + '_' + help_topic + '_' + help_subtopic).show();
			$('#section' + help_section + '_' + help_topic + '_' + help_subtopic).parent().find('div:visible').filter('.subcontent').prev().addClass('open').removeClass('closed');	
		}
	}
	
});